@zerospacegg/iolin
Version:
Pure TypeScript implementation of ZeroSpace game data processing (PKL-free)
30 lines • 1.37 kB
JavaScript
/**
* Augmentation Pool - Vynthra Commander Building
* Clean inheritance from faction Augmentation Pool with all properties and abilities
*/
import AugmentationPool from "../../../../faction/grell/building/augmentation-pool.js";
import CoopSeedling from "../unit/coop-vynthra-seedling.js";
import CoopStinger from "../unit/coop-vynthra-stinger.js";
import CoopLasher from "../unit/coop-vynthra-lasher.js";
import CoopIncubator from "./coop-vynthra-incubator.js";
export class CoopAugmentationPool extends AugmentationPool {
constructor() {
super();
// Generate composite UUID: {parent-uuid}:coop-vynthra
this.setVariantUUID("coop-vynthra");
// Dual unlock system: Building + Commander Level
this.unlockedBy = [
CoopIncubator.id, // Building requirement
this.commanderLevelId(1), // Commander level 1 requirement
];
// Built by coop builder
this.createdBy = [CoopSeedling.id];
// Unlocks coop units
this.unlocks = [CoopLasher.id];
// Provides upgrades for coop units
this.providesUpgradesFor = [CoopStinger.id, CoopLasher.id];
}
}
CoopAugmentationPool.src = "src/zerospace/coop/commander/vynthra/building/coop-vynthra-augmentation-pool.ts";
export default CoopAugmentationPool;
//# sourceMappingURL=coop-vynthra-augmentation-pool.js.map