@zerospacegg/iolin
Version:
Pure TypeScript implementation of ZeroSpace game data processing (PKL-free)
31 lines • 1.45 kB
JavaScript
;
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"));
/**
* Nourishing Pod - Vynthra Commander Building
* Clean inheritance from faction Nourishing Pod with all properties and abilities
*/
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/commander/vynthra/building/coop-vynthra-root-colony", // Building requirement
this.commanderLevelId(3), // Commander level 3 requirement
];
// Built by coop builder
this.createdBy = ["coop/commander/vynthra/unit/coop-vynthra-seedling"];
// Unlocks coop buildings
this.unlocks = ["coop/commander/vynthra/building/coop-vynthra-incubator"];
}
}
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