UNPKG

@zerospacegg/iolin

Version:

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

21 lines 703 B
/** * Mondar - Twin warrior who starts with the precision gun (ranged air/ground support) * Spawns together with Torq, switches roles when hammer is received * Part of the legendary Valkaru twin hero duo that embodies coordinated destruction */ import { ValkaruHeroUnit } from "../../../../defaults/valkaru.js"; import { Attack, Spell } from "../../../../engine/ability.js"; declare class Mondar extends ValkaruHeroUnit { uuid: string; static src: string; readonly attacks: { precisionGun: Attack; electrifyingHammer: Attack; }; readonly spells: { hammerCatch: Spell; }; constructor(); } export default Mondar; //# sourceMappingURL=mondar.d.ts.map