@zerospacegg/iolin
Version:
Pure TypeScript implementation of ZeroSpace game data processing (PKL-free)
23 lines • 1.33 kB
JavaScript
import RootColony from "../../../../faction/grell/building/root-colony.js";
/**
* Root Colony - Vynthra Commander Building
* Clean inheritance from faction Root Colony with all properties and abilities
*/
export class CoopRootColony extends RootColony {
constructor() {
super();
// Generate composite UUID: {parent-uuid}:coop-vynthra
this.setVariantUUID("coop-vynthra");
// Base building - no unlock requirements
this.unlockedBy = [];
// Built by coop builder
this.createdBy = ["coop/commander/vynthra/unit/coop-vynthra-seedling"];
// Creates coop units and buildings
this.creates = ["coop/commander/vynthra/unit/coop-vynthra-seedling", "coop/commander/vynthra/unit/coop-vynthra-grell-harvester", "coop/commander/vynthra/building/coop-vynthra-grell-extractor"];
// Unlocks coop buildings and units
this.unlocks = ["coop/commander/vynthra/building/coop-vynthra-nourishing-pod", "coop/commander/vynthra/building/coop-vynthra-cultivator", "coop/commander/vynthra/unit/coop-vynthra-seedling", "coop/commander/vynthra/unit/coop-vynthra-grell-harvester"];
}
}
CoopRootColony.src = "src/zerospace/coop/commander/vynthra/building/coop-vynthra-root-colony.ts";
export default CoopRootColony;
//# sourceMappingURL=coop-vynthra-root-colony.js.map