UNPKG

@zerospacegg/iolin

Version:

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

39 lines 2.42 kB
"use strict"; /** * Advanced Augmentation Pool - Vynthra Commander Building * Clean inheritance from faction Advanced Augmentation Pool with all properties and abilities */ var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; Object.defineProperty(exports, "__esModule", { value: true }); exports.CoopAdvancedAugmentationPool = void 0; const advanced_augmentation_pool_js_1 = __importDefault(require("../../../../faction/grell/building/advanced-augmentation-pool.cjs")); const coop_vynthra_seedling_js_1 = __importDefault(require("../unit/coop-vynthra-seedling.cjs")); const coop_vynthra_harbinger_js_1 = __importDefault(require("../unit/coop-vynthra-harbinger.cjs")); const coop_vynthra_man_eater_js_1 = __importDefault(require("../unit/coop-vynthra-man-eater.cjs")); const coop_vynthra_thresher_js_1 = __importDefault(require("../unit/coop-vynthra-thresher.cjs")); const coop_vynthra_medium_incubator_js_1 = __importDefault(require("./coop-vynthra-medium-incubator.cjs")); const coop_vynthra_skrelling_nest_js_1 = __importDefault(require("./coop-vynthra-skrelling-nest.cjs")); class CoopAdvancedAugmentationPool extends advanced_augmentation_pool_js_1.default { constructor() { super(); // Generate composite UUID: {parent-uuid}:coop-vynthra this.setVariantUUID("coop-vynthra"); // Dual unlock system: Building + Commander Level this.unlockedBy = [ coop_vynthra_medium_incubator_js_1.default.id, // Building requirement this.commanderLevelId(1), // Commander level 1 requirement ]; // Built by coop builder this.createdBy = [coop_vynthra_seedling_js_1.default.id]; // Unlocks coop buildings and units this.unlocks = [coop_vynthra_skrelling_nest_js_1.default.id, coop_vynthra_thresher_js_1.default.id]; // Provides upgrades for coop units this.providesUpgradesFor = [coop_vynthra_harbinger_js_1.default.id, coop_vynthra_man_eater_js_1.default.id, coop_vynthra_thresher_js_1.default.id]; } } exports.CoopAdvancedAugmentationPool = CoopAdvancedAugmentationPool; CoopAdvancedAugmentationPool.src = "src/zerospace/coop/commander/vynthra/building/coop-vynthra-advanced-augmentation-pool.ts"; exports.default = CoopAdvancedAugmentationPool; //# sourceMappingURL=coop-vynthra-advanced-augmentation-pool.js.map