UNPKG

@zerospacegg/iolin

Version:

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

42 lines 2.11 kB
"use strict"; /** * Advanced Augmentation Pool - Grell T2.5 tech building * Elite bio-enhancement facility that inherits from base tech building */ var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; Object.defineProperty(exports, "__esModule", { value: true }); exports.AdvancedAugmentationPool = void 0; const grell_classes_js_1 = require("../../grell-classes.cjs"); const harbinger_js_1 = __importDefault(require("../unit/harbinger.cjs")); const man_eater_js_1 = __importDefault(require("../unit/man-eater.cjs")); const seedling_js_1 = __importDefault(require("../unit/seedling.cjs")); const thresher_js_1 = __importDefault(require("../unit/thresher.cjs")); const medium_incubator_js_1 = __importDefault(require("./medium-incubator.cjs")); const skrelling_nest_js_1 = __importDefault(require("./skrelling-nest.cjs")); class AdvancedAugmentationPool extends grell_classes_js_1.GrellTechBuilding { constructor() { super(); this.name = "Advanced Augmentation Pool"; this.tier = "T2.5"; this.hexiteCost = 100; this.fluxCost = 25; this.buildTime = 30; this.uuid = "78f0d8d3-aa98-4285-8612-c282ce554e37"; this.shortName = "Adv. Aug Pool"; this.hp = 1000; // Unlocks units and buildings this.unlocks = [skrelling_nest_js_1.default.id, thresher_js_1.default.id]; this.createdBy = [seedling_js_1.default.id]; this.unlockedBy = [medium_incubator_js_1.default.id]; // Provides upgrades for units this.providesUpgradesFor = [harbinger_js_1.default.id, man_eater_js_1.default.id, thresher_js_1.default.id]; // All other stats (armor, biomass, etc.) inherited from base GrellTechBuilding class } } exports.AdvancedAugmentationPool = AdvancedAugmentationPool; // Static property for source path AdvancedAugmentationPool.src = "src/zerospace/faction/grell/building/advanced-augmentation-pool.ts"; exports.default = AdvancedAugmentationPool; //# sourceMappingURL=advanced-augmentation-pool.js.map