ZeroSpace.gg

Spectral Foundry

Xol T1 Production Building

import { XolProductionBuilding } from "../../../../defaults/xol.js"; export class SpectralFoundry extends XolProductionBuilding { override uuid: string; static override src = "src/zerospace/faction/xol/building/spectral-foundry.ts"; constructor() { super(); this.name = "Spectral Foundry"; this.description = "Base unit production structure."; this.tier = "T1"; this.hotkey = "G"; this.uuid = "a3091552-2907-454f-a4eb-46a640561b7f"; 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/spectron"]; this.unlocks = ["faction/xol/unit/spectron"]; } } export default SpectralFoundry;