UNPKG

@zerospacegg/iolin

Version:

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

26 lines 1.25 kB
import SkrellingNest from "../../../../faction/grell/building/skrelling-nest.js"; /** * Skrelling Nest - Vynthra Commander Building * Clean inheritance from faction Skrelling Nest with all properties and abilities */ 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 = [ "coop/commander/vynthra/building/coop-vynthra-advanced-augmentation-pool", // Building requirement this.commanderLevelId(4), // Commander level 4 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-behemoth"]; // Provides upgrades for coop units this.providesUpgradesFor = ["coop/commander/vynthra/unit/coop-vynthra-behemoth"]; } } CoopSkrellingNest.src = "src/zerospace/coop/commander/vynthra/building/coop-vynthra-skrelling-nest.ts"; export default CoopSkrellingNest; //# sourceMappingURL=coop-vynthra-skrelling-nest.js.map