UNPKG

@zerospacegg/iolin

Version:

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

29 lines 1.37 kB
/** * Advanced Augmentation Pool - Grell T2.5 tech building * Elite bio-enhancement facility that inherits from base tech building */ import { GrellTechBuilding } from "../../../../defaults/grell.js"; export class AdvancedAugmentationPool extends GrellTechBuilding { constructor() { super(); this.hexiteCost = 100; this.fluxCost = 25; this.buildTime = 30; this.name = "Advanced Augmentation Pool"; this.tier = "T2.5"; this.uuid = "78f0d8d3-aa98-4285-8612-c282ce554e37"; this.shortName = "Adv. Aug Pool"; this.hp = 1000; // Unlocks units and buildings this.unlocks = ["faction/grell/building/skrelling-nest", "faction/grell/unit/thresher"]; this.createdBy = ["faction/grell/unit/seedling"]; this.unlockedBy = ["faction/grell/building/medium-incubator"]; // Provides upgrades for units this.providesUpgradesFor = ["faction/grell/unit/harbinger", "faction/grell/unit/man-eater", "faction/grell/unit/thresher"]; // All other stats (armor, biomass, etc.) inherited from base GrellTechBuilding class } } // Static property for source path AdvancedAugmentationPool.src = "src/zerospace/faction/grell/building/advanced-augmentation-pool.ts"; export default AdvancedAugmentationPool; //# sourceMappingURL=advanced-augmentation-pool.js.map