ZSGG Public Library
Power Core
Xol T0 Supply Building
import { XolSupplyBuilding } from "../../../../defaults/xol.js";
export class PowerCore extends XolSupplyBuilding {
override uuid: string;
static override src = "src/zerospace/faction/xol/building/power-core.ts";
constructor() {
super();
this.name = "Power Core";
this.description = "Xol supply structure. Provides power.";
this.tier = "T0";
this.hotkey = "W";
this.uuid = "79a3049a-0243-45f8-96e5-3e8df1d5a891";
this.hexiteCost = 50;
this.fluxCost = 0;
this.buildTime = 3;
this.buildCount = 1;
this.hp = 250;
this.armor = 1;
this.armorType = "building";
}
}
export default PowerCore;