UNPKG

@zerospacegg/iolin

Version:

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

29 lines 921 B
/** * Arandi Time Warper - Elite interdimensional unit * Represents the absolute pinnacle of interdimensional mastery * Masters of temporal manipulation and battlefield control */ import { Attack, Spell } from "../../../../engine/ability.js"; import { ArandiMercUnit } from "../../arandi-classes.js"; import type { Tier, HotKey } from "../../../../engine/core.js"; declare class ArandiTimeWarper extends ArandiMercUnit { uuid: string; static src: string; readonly name: string; readonly tier: Tier; readonly hotkey: HotKey; readonly hexiteCost: number; readonly fluxCost: number; readonly buildTime: number; readonly buildCount: number; readonly attacks: { lightPulseCannon: Attack; }; readonly spells: { teleport: Spell; phase: Spell; }; constructor(); } export default ArandiTimeWarper; //# sourceMappingURL=arandi-time-warper.d.ts.map