UNPKG

@zerospacegg/iolin

Version:

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

26 lines 752 B
/** * Kraegar - Legion's greatest beast hunter hero * Ranged hero with sabretooth companion and area-effect piercing abilities */ import { LegionHeroUnit } from "../../../../defaults/legion.js"; import { Attack, Spell, Upgrade } from "../../../../engine/ability.js"; export declare class Kraegar extends LegionHeroUnit { uuid: string; static src: string; readonly attacks: { attack: Attack; }; readonly spells: { piercingShot: Spell; speedburst: Spell; }; readonly upgrades: { speedburstUpgrade: Upgrade; moreFeed: Upgrade; explosiveWarhead: Upgrade; killerInstinct: Upgrade; }; constructor(); } export default Kraegar; //# sourceMappingURL=kraegar.d.ts.map