UNPKG

@zerospacegg/iolin

Version:

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

21 lines 654 B
/** * Arandi Time Warper - Elite interdimensional unit * Represents the absolute pinnacle of interdimensional mastery * Masters of temporal manipulation and battlefield control */ import { ArandiMercUnit } from "../../../../defaults/arandi.js"; import { Attack, Spell } from "../../../../engine/ability.js"; declare class ArandiTimeWarper extends ArandiMercUnit { uuid: string; static src: string; readonly attacks: { lightPulseCannon: Attack; }; readonly spells: { teleport: Spell; phase: Spell; }; constructor(); } export default ArandiTimeWarper; //# sourceMappingURL=arandi-time-warper.d.ts.map