ZSGG Public Library
Xyther Assembler
Xol T1 Production Building
import { XolProductionBuilding } from "../../../../defaults/xol.js";
export class XytherAssembler extends XolProductionBuilding {
override uuid: string;
static override src = "src/zerospace/faction/xol/building/xyther-assembler.ts";
constructor() {
super();
this.name = "Xyther Assembler";
this.description = "Base unit production structure.";
this.tier = "T1";
this.hotkey = "F";
this.uuid = "48f4e78e-5113-4a76-986c-95b15ee3833d";
this.hexiteCost = 100;
this.fluxCost = 0;
this.buildTime = 50;
this.buildCount = 1;
this.hp = 1000;
this.armor = 1;
this.armorType = "building";
this.creates = ["faction/xol/unit/xyther"];
this.unlocks = ["faction/xol/unit/xyther"];
}
}
export default XytherAssembler;