UNPKG

@zerospacegg/iolin

Version:

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

25 lines 1.15 kB
/** * Reaver - Vynthra Commander Unit * Clean inheritance from faction Reaver with all properties and abilities */ import Reaver from "../../../../faction/grell/unit/reaver.js"; import CoopLargeIncubator from "../building/coop-vynthra-large-incubator.js"; import CoopSpecialAugmentationPool from "../building/coop-vynthra-special-augmentation-pool.js"; export class CoopReaver extends Reaver { constructor() { super(); // Generate composite UUID: {parent-uuid}:coop-vynthra this.setVariantUUID("coop-vynthra"); // Dual unlock system: Building + Commander Level this.unlockedBy = [ CoopSpecialAugmentationPool.id, // Building requirement (from parent) this.commanderLevelId(7), // Commander level 7 requirement ]; // Coop-specific relationships (replicate parent with coop references) this.createdBy = [CoopLargeIncubator.id]; this.upgradedBy = [CoopSpecialAugmentationPool.id]; } } CoopReaver.src = "src/zerospace/coop/commander/vynthra/unit/coop-vynthra-reaver.ts"; export default CoopReaver; //# sourceMappingURL=coop-vynthra-reaver.js.map