@zerospacegg/iolin
Version:
Pure TypeScript implementation of ZeroSpace game data processing (PKL-free)
26 lines • 1.47 kB
JavaScript
import LargeIncubator from "../../../../faction/grell/building/large-incubator.js";
/**
* Large Incubator - Vynthra Commander Building
* Clean inheritance from faction Large Incubator with all properties and abilities
*/
export class CoopLargeIncubator extends LargeIncubator {
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-medium-incubator", // Building requirement
this.commanderLevelId(1), // Commander level 1 requirement
];
// Coop-specific unit creation - reference coop units, not faction ones
this.creates = ["coop/commander/vynthra/unit/coop-vynthra-reaver", "coop/commander/vynthra/unit/coop-vynthra-weaver", "coop/commander/vynthra/unit/coop-vynthra-behemoth"];
// Built by coop builder
this.createdBy = ["coop/commander/vynthra/unit/coop-vynthra-seedling"];
// Unlocks coop buildings and units
this.unlocks = ["coop/commander/vynthra/unit/coop-vynthra-behemoth", "coop/commander/vynthra/building/coop-vynthra-special-augmentation-pool"];
}
}
CoopLargeIncubator.src = "src/zerospace/coop/commander/vynthra/building/coop-vynthra-large-incubator.ts";
export default CoopLargeIncubator;
//# sourceMappingURL=coop-vynthra-large-incubator.js.map