UNPKG

@zerospacegg/iolin

Version:

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

21 lines 699 B
/** * Torq - Twin warrior who starts with the electrifying hammer (melee + chain lightning) * Spawns together with Mondar, switches roles when hammer is thrown * Part of the legendary Valkaru twin hero duo that embodies coordinated destruction */ import { ValkaruHeroUnit } from "../../../../defaults/valkaru.js"; import { Attack, Spell } from "../../../../engine/ability.js"; declare class Torq extends ValkaruHeroUnit { uuid: string; static src: string; readonly attacks: { electrifyingHammer: Attack; precisionGun: Attack; }; readonly spells: { hammerThrow: Spell; }; constructor(); } export default Torq; //# sourceMappingURL=torq.d.ts.map