UNPKG

@zerospacegg/iolin

Version:

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

25 lines 1.18 kB
/** * Thresher - Vynthra Commander Unit * Clean inheritance from faction Thresher with all properties and abilities */ import Thresher from "../../../../faction/grell/unit/thresher.js"; import CoopAdvancedAugmentationPool from "../building/coop-vynthra-advanced-augmentation-pool.js"; import CoopMediumIncubator from "../building/coop-vynthra-medium-incubator.js"; export class CoopThresher extends Thresher { 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 (from parent) this.commanderLevelId(4), // Commander level 4 requirement ]; // Coop-specific relationships (replicate parent with coop references) this.createdBy = [CoopMediumIncubator.id]; this.upgradedBy = [CoopAdvancedAugmentationPool.id]; } } CoopThresher.src = "src/zerospace/coop/commander/vynthra/unit/coop-vynthra-thresher.ts"; export default CoopThresher; //# sourceMappingURL=coop-vynthra-thresher.js.map