@zerospacegg/iolin
Version:
Pure TypeScript implementation of ZeroSpace game data processing (PKL-free)
24 lines • 1.11 kB
JavaScript
import NourishingPod from "../../../../faction/grell/building/nourishing-pod.js";
/**
* Nourishing Pod - Vynthra Commander Building
* Clean inheritance from faction Nourishing Pod with all properties and abilities
*/
export class CoopNourishingPod extends NourishingPod {
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"];
}
}
CoopNourishingPod.src = "src/zerospace/coop/commander/vynthra/building/coop-vynthra-nourishing-pod.ts";
export default CoopNourishingPod;
//# sourceMappingURL=coop-vynthra-nourishing-pod.js.map