@zerospacegg/iolin
Version:
Pure TypeScript implementation of ZeroSpace game data processing (PKL-free)
34 lines • 1.69 kB
JavaScript
;
/**
* Nourishing Pod - Vynthra Commander Building
* Clean inheritance from faction Nourishing Pod 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.CoopNourishingPod = void 0;
const nourishing_pod_js_1 = __importDefault(require("../../../../faction/grell/building/nourishing-pod.cjs"));
const coop_vynthra_seedling_js_1 = __importDefault(require("../unit/coop-vynthra-seedling.cjs"));
const coop_vynthra_root_colony_js_1 = __importDefault(require("./coop-vynthra-root-colony.cjs"));
const coop_vynthra_incubator_js_1 = __importDefault(require("./coop-vynthra-incubator.cjs"));
class CoopNourishingPod extends nourishing_pod_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_root_colony_js_1.default.id, // Building requirement
this.commanderLevelId(3), // Commander level 3 requirement
];
// Built by coop builder
this.createdBy = [coop_vynthra_seedling_js_1.default.id];
// Unlocks coop buildings
this.unlocks = [coop_vynthra_incubator_js_1.default.id];
}
}
exports.CoopNourishingPod = CoopNourishingPod;
CoopNourishingPod.src = "src/zerospace/coop/commander/vynthra/building/coop-vynthra-nourishing-pod.ts";
exports.default = CoopNourishingPod;
//# sourceMappingURL=coop-vynthra-nourishing-pod.js.map