UNPKG

@zerospacegg/iolin

Version:

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

26 lines 1.54 kB
import AdvancedAugmentationPool from "../../../../faction/grell/building/advanced-augmentation-pool.js"; /** * Advanced Augmentation Pool - Vynthra Commander Building * Clean inheritance from faction Advanced Augmentation Pool with all properties and abilities */ 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 = [ "coop/commander/vynthra/building/coop-vynthra-medium-incubator", // Building requirement this.commanderLevelId(1), // Commander level 1 requirement ]; // Built by coop builder this.createdBy = ["coop/commander/vynthra/unit/coop-vynthra-seedling"]; // Unlocks coop buildings and units this.unlocks = ["coop/commander/vynthra/building/coop-vynthra-skrelling-nest", "coop/commander/vynthra/unit/coop-vynthra-thresher"]; // Provides upgrades for coop units this.providesUpgradesFor = ["coop/commander/vynthra/unit/coop-vynthra-harbinger", "coop/commander/vynthra/unit/coop-vynthra-man-eater", "coop/commander/vynthra/unit/coop-vynthra-thresher"]; } } 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