UNPKG

@zerospacegg/iolin

Version:

Pure TypeScript implementation of ZeroSpace game data processing (PKL-free)

28 lines 1.31 kB
/** * Specialized Research Lab - Advanced research facility for elite unit upgrades * High-tier tech building specializing in cutting-edge military technologies */ import { ProtectorateTechBuilding } from "../../../../defaults/protectorate.js"; export class SpecializedResearchLab extends ProtectorateTechBuilding { constructor() { super(); this.shortName = "Spec. R. Lab"; this.hexiteCost = 100; this.fluxCost = 75; this.buildTime = 40; this.name = "Specialized Research Lab"; this.tier = "T3.5"; this.uuid = "8c64c538-92eb-4e79-a9db-e20384502e0e"; this.hp = 1000; this.shields = 0; this.armorType = "building"; // Building relationships this.createdBy = ["faction/protectorate/unit/prot-build-drone"]; this.unlockedBy = ["faction/protectorate/building/advanced-factory"]; this.providesUpgradesFor = ["faction/protectorate/unit/cyclops", "faction/protectorate/unit/juggernaut", "faction/protectorate/strider", "faction/protectorate/unit/griffin"]; } } // Static property for source path SpecializedResearchLab.src = "src/zerospace/faction/protectorate/building/specialized-research-lab.ts"; export default SpecializedResearchLab; //# sourceMappingURL=specialized-research-lab.js.map