@zerospacegg/iolin
Version:
Pure TypeScript implementation of ZeroSpace game data processing (PKL-free)
23 lines • 641 B
TypeScript
/**
* Hel - Legendary Marran sniper hero
* Master of precision warfare and defensive superiority
* The pinnacle of Marran military philosophy made manifest
*/
import { Attack, Spell } from "../../../../engine/ability.js";
import { MarranHeroUnit } from "../../marran-classes.js";
export declare class Hel extends MarranHeroUnit {
uuid: string;
static src: string;
readonly name: string;
readonly attacks: {
attack: Attack;
};
readonly spells: {
shockwaveGrenade: Spell;
stealth: Spell;
snipe: Spell;
};
constructor();
}
export default Hel;
//# sourceMappingURL=hel.d.ts.map