UNPKG

@zerospacegg/iolin

Version:

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

19 lines 574 B
/** * Dread Raider - Fast T1 scout unit with thieve ability * Fast-moving operative who redistributes wealth through hit-and-run tactics */ import { DreadRaidersMercUnit } from "../../../../defaults/dread.js"; import { Attack, Spell } from "../../../../engine/ability.js"; declare class DreadRaider extends DreadRaidersMercUnit { uuid: string; static src: string; readonly attacks: { attack: Attack; }; readonly spells: { thieve: Spell; }; constructor(); } export default DreadRaider; //# sourceMappingURL=dread-raider.d.ts.map