UNPKG

@zerospacegg/iolin

Version:

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

25 lines 851 B
/** * Arandi Phoenix Guard - Elite interdimensional assault warriors * Quantum immortal fighters who exist across multiple realities * Summoned by "Call in the Phoenix Guard" topbar ability */ import { Attack } from "../../../../engine/ability.js"; import { ArandiMercUnit } from "../../arandi-classes.js"; import type { Tier, HotKey } from "../../../../engine/core.js"; declare class ArandiPhoenixGuard 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: { voidBlaster: Attack; }; constructor(); } export default ArandiPhoenixGuard; //# sourceMappingURL=arandi-phoenix-guard.d.ts.map