UNPKG

@zerospacegg/iolin

Version:

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

29 lines 1.36 kB
"use strict"; var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; Object.defineProperty(exports, "__esModule", { value: true }); exports.CoopCultivator = void 0; const cultivator_js_1 = __importDefault(require("../../../../faction/grell/building/cultivator.cjs")); /** * Cultivator - Vynthra Commander Building * Clean inheritance from faction Cultivator with all properties and abilities */ class CoopCultivator extends cultivator_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/commander/vynthra/building/coop-vynthra-root-colony", // Building requirement this.commanderLevelId(1), // Commander level 1 requirement ]; // Built by coop builder and harvester this.createdBy = ["coop/commander/vynthra/unit/coop-vynthra-seedling", "coop/commander/vynthra/unit/coop-vynthra-grell-harvester"]; } } exports.CoopCultivator = CoopCultivator; CoopCultivator.src = "src/zerospace/coop/commander/vynthra/building/coop-vynthra-cultivator.ts"; exports.default = CoopCultivator; //# sourceMappingURL=coop-vynthra-cultivator.js.map