UNPKG

@zerospacegg/iolin

Version:

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

30 lines 1.66 kB
"use strict"; var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; Object.defineProperty(exports, "__esModule", { value: true }); exports.CoopRootColony = void 0; const root_colony_js_1 = __importDefault(require("../../../../faction/grell/building/root-colony.cjs")); /** * Root Colony - Vynthra Commander Building * Clean inheritance from faction Root Colony with all properties and abilities */ class CoopRootColony extends root_colony_js_1.default { constructor() { super(); // Generate composite UUID: {parent-uuid}:coop-vynthra this.setVariantUUID("coop-vynthra"); // Base building - no unlock requirements this.unlockedBy = []; // Built by coop builder this.createdBy = ["coop/commander/vynthra/unit/coop-vynthra-seedling"]; // Creates coop units and buildings this.creates = ["coop/commander/vynthra/unit/coop-vynthra-seedling", "coop/commander/vynthra/unit/coop-vynthra-grell-harvester", "coop/commander/vynthra/building/coop-vynthra-grell-extractor"]; // Unlocks coop buildings and units this.unlocks = ["coop/commander/vynthra/building/coop-vynthra-nourishing-pod", "coop/commander/vynthra/building/coop-vynthra-cultivator", "coop/commander/vynthra/unit/coop-vynthra-seedling", "coop/commander/vynthra/unit/coop-vynthra-grell-harvester"]; } } exports.CoopRootColony = CoopRootColony; CoopRootColony.src = "src/zerospace/coop/commander/vynthra/building/coop-vynthra-root-colony.ts"; exports.default = CoopRootColony; //# sourceMappingURL=coop-vynthra-root-colony.js.map