@zerospacegg/iolin
Version:
Pure TypeScript implementation of ZeroSpace game data processing (PKL-free)
31 lines • 901 B
TypeScript
/**
* Kraegar - Legion's greatest beast hunter hero
* Ranged hero with sabretooth companion and area-effect piercing abilities
*/
import { Attack, Spell, Upgrade } from "../../../../engine/ability.js";
import { LegionHeroUnit } from "../../legion-classes.js";
export declare class Kraegar extends LegionHeroUnit {
uuid: string;
static src: string;
readonly name: string;
readonly hexiteCost: number;
readonly fluxCost: number;
readonly buildTime: number;
readonly buildCount: number;
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