UNPKG

@zerospacegg/iolin

Version:

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

26 lines 1.45 kB
import SpecialAugmentationPool from "../../../../faction/grell/building/special-augmentation-pool.js"; /** * Special Augmentation Pool - Vynthra Commander Building * Clean inheritance from faction Special Augmentation Pool with all properties and abilities */ export class CoopSpecialAugmentationPool extends SpecialAugmentationPool { 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-large-incubator", // Building requirement this.commanderLevelId(7), // Commander level 7 requirement ]; // Built by coop builder this.createdBy = ["coop/commander/vynthra/unit/coop-vynthra-seedling"]; // Unlocks coop units this.unlocks = ["coop/commander/vynthra/unit/coop-vynthra-weaver", "coop/commander/vynthra/unit/coop-vynthra-reaver"]; // Provides upgrades for coop units this.providesUpgradesFor = ["coop/commander/vynthra/unit/coop-vynthra-reaver", "coop/commander/vynthra/unit/coop-vynthra-weaver"]; } } CoopSpecialAugmentationPool.src = "src/zerospace/coop/commander/vynthra/building/coop-vynthra-special-augmentation-pool.ts"; export default CoopSpecialAugmentationPool; //# sourceMappingURL=coop-vynthra-special-augmentation-pool.js.map