UNPKG

@zerospacegg/iolin

Version:

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

45 lines 2.37 kB
"use strict"; /** * Seedling - Vynthra Commander Unit * Clean inheritance from faction Seedling 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.CoopSeedling = void 0; const seedling_js_1 = __importDefault(require("../../../../faction/grell/unit/seedling.cjs")); class CoopSeedling extends seedling_js_1.default { constructor() { super(); this.internalId = undefined; this.internalPath = undefined; // Generate composite UUID: {parent-uuid}:coop-vynthra this.setVariantUUID("coop-vynthra"); // Dual unlock system: Building + Commander Level this.unlockedBy = [ "coop/commander/vynthra/building/coop-vynthra-root-colony", // Building requirement (from parent) this.commanderLevelId(1), // Commander level 1 requirement ]; // Coop-specific relationships (replicate parent with coop references) this.createdBy = ["coop/commander/vynthra/building/coop-vynthra-root-colony"]; // Builder capabilities - what this seedling can construct (replicate parent creates array) this.creates = [ "coop/commander/vynthra/building/coop-vynthra-incubator", "coop/commander/vynthra/building/coop-vynthra-medium-incubator", "coop/commander/vynthra/building/coop-vynthra-large-incubator", "coop/commander/vynthra/building/coop-vynthra-augmentation-pool", "coop/commander/vynthra/building/coop-vynthra-advanced-augmentation-pool", "coop/commander/vynthra/building/coop-vynthra-special-augmentation-pool", "coop/commander/vynthra/building/coop-vynthra-cultivator", "coop/commander/vynthra/building/coop-vynthra-root-colony", "coop/commander/vynthra/building/coop-vynthra-skrelling-nest", "coop/commander/vynthra/building/coop-vynthra-nourishing-pod", "coop/commander/vynthra/building/coop-vynthra-grell-extractor", ]; } } exports.CoopSeedling = CoopSeedling; CoopSeedling.src = "src/zerospace/coop/commander/vynthra/unit/coop-vynthra-seedling.ts"; exports.default = CoopSeedling; //# sourceMappingURL=coop-vynthra-seedling.js.map