UNPKG

@zerospacegg/iolin

Version:

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

25 lines 1.17 kB
/** * Reaver - Vynthra Commander Unit * Clean inheritance from faction Reaver with all properties and abilities */ import Reaver from "../../../../faction/grell/unit/reaver.js"; export class CoopReaver extends Reaver { constructor() { super(); this.internalId = undefined; this.internalPath = undefined; // 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-special-augmentation-pool", // Building requirement (from parent) this.commanderLevelId(7), // Commander level 7 requirement ]; // Coop-specific relationships (replicate parent with coop references) this.createdBy = ["coop/commander/vynthra/building/coop-vynthra-large-incubator"]; this.upgradedBy = ["coop/commander/vynthra/building/coop-vynthra-special-augmentation-pool"]; } } CoopReaver.src = "src/zerospace/coop/commander/vynthra/unit/coop-vynthra-reaver.ts"; export default CoopReaver; //# sourceMappingURL=coop-vynthra-reaver.js.map