UNPKG

@zerospacegg/iolin

Version:

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

26 lines 1.32 kB
import AugmentationPool from "../../../../faction/grell/building/augmentation-pool.js"; /** * Augmentation Pool - Vynthra Commander Building * Clean inheritance from faction Augmentation Pool with all properties and abilities */ 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 = [ "coop/commander/vynthra/building/coop-vynthra-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 units this.unlocks = ["coop/commander/vynthra/unit/coop-vynthra-lasher"]; // Provides upgrades for coop units this.providesUpgradesFor = ["coop/commander/vynthra/unit/coop-vynthra-stinger", "coop/commander/vynthra/unit/coop-vynthra-lasher"]; } } CoopAugmentationPool.src = "src/zerospace/coop/commander/vynthra/building/coop-vynthra-augmentation-pool.ts"; export default CoopAugmentationPool; //# sourceMappingURL=coop-vynthra-augmentation-pool.js.map