UNPKG

@zerospacegg/iolin

Version:

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

36 lines 1.86 kB
"use strict"; /** * Skrelling Nest - Vynthra Commander Building * Clean inheritance from faction Skrelling Nest 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.CoopSkrellingNest = void 0; const skrelling_nest_js_1 = __importDefault(require("../../../../faction/grell/building/skrelling-nest.cjs")); const coop_vynthra_seedling_js_1 = __importDefault(require("../unit/coop-vynthra-seedling.cjs")); const coop_vynthra_behemoth_js_1 = __importDefault(require("../unit/coop-vynthra-behemoth.cjs")); const coop_vynthra_advanced_augmentation_pool_js_1 = __importDefault(require("./coop-vynthra-advanced-augmentation-pool.cjs")); class CoopSkrellingNest extends skrelling_nest_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_advanced_augmentation_pool_js_1.default.id, // Building requirement this.commanderLevelId(4), // Commander level 4 requirement ]; // Built by coop builder this.createdBy = [coop_vynthra_seedling_js_1.default.id]; // Unlocks coop units this.unlocks = [coop_vynthra_behemoth_js_1.default.id]; // Provides upgrades for coop units this.providesUpgradesFor = [coop_vynthra_behemoth_js_1.default.id]; } } exports.CoopSkrellingNest = CoopSkrellingNest; CoopSkrellingNest.src = "src/zerospace/coop/commander/vynthra/building/coop-vynthra-skrelling-nest.ts"; exports.default = CoopSkrellingNest; //# sourceMappingURL=coop-vynthra-skrelling-nest.js.map