ZSGG Public Library
Gyroforge
Xol T1 Production Building
import { XolProductionBuilding } from "../../../../defaults/xol.js";
export class Gyroforge extends XolProductionBuilding {
override uuid: string;
static override src = "src/zerospace/faction/xol/building/gyroforge.ts";
constructor() {
super();
this.name = "Gyroforge";
this.description = "Base unit production structure.";
this.tier = "T1";
this.hotkey = "D";
this.uuid = "6e978b19-b93c-40ec-82b3-d19575636a08";
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/roller"];
this.unlocks = ["faction/xol/unit/roller"];
}
}
export default Gyroforge;