@zerospacegg/iolin
Version:
Pure TypeScript implementation of ZeroSpace game data processing (PKL-free)
24 lines • 780 B
TypeScript
/**
* Dread Hero - Enigmatic leader of the Dread Raiders
* Robin Hood-style space pirate who redistributes wealth from corporate powers
* Famous for the battle cry "TOASTED GRELL!" when eliminating enemies
*/
import { Attack, Spell } from "../../../../engine/ability.js";
import { DreadRaidersHeroUnit } from "../../dread-classes.js";
import type { HotKey } from "../../../../engine/core.js";
declare class DreadHero extends DreadRaidersHeroUnit {
uuid: string;
static src: string;
readonly name: string;
readonly hotkey: HotKey;
readonly attacks: {
pulseRifle: Attack;
};
readonly spells: {
shadowWalk: Spell;
stickyBomb: Spell;
};
constructor();
}
export default DreadHero;
//# sourceMappingURL=dread-hero.d.ts.map