UNPKG

@zerospacegg/iolin

Version:

Pure TypeScript implementation of ZeroSpace game data processing (PKL-free)

32 lines 1.67 kB
/** * Advanced Augmentation Pool - Vynthra Commander Building * Clean inheritance from faction Advanced Augmentation Pool with all properties and abilities */ import AdvancedAugmentationPool from "../../../../faction/grell/building/advanced-augmentation-pool.js"; import CoopSeedling from "../unit/coop-vynthra-seedling.js"; import CoopHarbinger from "../unit/coop-vynthra-harbinger.js"; import CoopManEater from "../unit/coop-vynthra-man-eater.js"; import CoopThresher from "../unit/coop-vynthra-thresher.js"; import CoopMediumIncubator from "./coop-vynthra-medium-incubator.js"; import CoopSkrellingNest from "./coop-vynthra-skrelling-nest.js"; export class CoopAdvancedAugmentationPool extends AdvancedAugmentationPool { constructor() { super(); // Generate composite UUID: {parent-uuid}:coop-vynthra this.setVariantUUID("coop-vynthra"); // Dual unlock system: Building + Commander Level this.unlockedBy = [ CoopMediumIncubator.id, // Building requirement this.commanderLevelId(1), // Commander level 1 requirement ]; // Built by coop builder this.createdBy = [CoopSeedling.id]; // Unlocks coop buildings and units this.unlocks = [CoopSkrellingNest.id, CoopThresher.id]; // Provides upgrades for coop units this.providesUpgradesFor = [CoopHarbinger.id, CoopManEater.id, CoopThresher.id]; } } CoopAdvancedAugmentationPool.src = "src/zerospace/coop/commander/vynthra/building/coop-vynthra-advanced-augmentation-pool.ts"; export default CoopAdvancedAugmentationPool; //# sourceMappingURL=coop-vynthra-advanced-augmentation-pool.js.map