UNPKG

@zerospacegg/iolin

Version:

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

21 lines 668 B
/** * 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 { DreadRaidersHeroUnit } from "../../../../defaults/dread.js"; import { Attack, Spell } from "../../../../engine/ability.js"; declare class DreadHero extends DreadRaidersHeroUnit { uuid: string; static src: string; readonly attacks: { pulseRifle: Attack; }; readonly spells: { shadowWalk: Spell; stickyBomb: Spell; }; constructor(); } export default DreadHero; //# sourceMappingURL=yearl.d.ts.map