UNPKG

@zerospacegg/iolin

Version:

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

29 lines 1.32 kB
/** * Skrelling Nest - Vynthra Commander Building * Clean inheritance from faction Skrelling Nest with all properties and abilities */ import SkrellingNest from "../../../../faction/grell/building/skrelling-nest.js"; import CoopSeedling from "../unit/coop-vynthra-seedling.js"; import CoopBehemoth from "../unit/coop-vynthra-behemoth.js"; import CoopAdvancedAugmentationPool from "./coop-vynthra-advanced-augmentation-pool.js"; export class CoopSkrellingNest extends SkrellingNest { constructor() { super(); // Generate composite UUID: {parent-uuid}:coop-vynthra this.setVariantUUID("coop-vynthra"); // Dual unlock system: Building + Commander Level this.unlockedBy = [ CoopAdvancedAugmentationPool.id, // Building requirement this.commanderLevelId(4), // Commander level 4 requirement ]; // Built by coop builder this.createdBy = [CoopSeedling.id]; // Unlocks coop units this.unlocks = [CoopBehemoth.id]; // Provides upgrades for coop units this.providesUpgradesFor = [CoopBehemoth.id]; } } CoopSkrellingNest.src = "src/zerospace/coop/commander/vynthra/building/coop-vynthra-skrelling-nest.ts"; export default CoopSkrellingNest; //# sourceMappingURL=coop-vynthra-skrelling-nest.js.map