UNPKG

@zerospacegg/iolin

Version:

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

21 lines 623 B
/** * TriArch I'Olin - Arandi Hero * One of the three supreme leaders of the ancient Arandi Empire * Master of interdimensional energy and space-time manipulation */ import { Attack, Spell } from "../../../../engine/ability.js"; import { ArandiHeroUnit } from "../../../../defaults/arandi.js"; declare class TriarchIolin extends ArandiHeroUnit { uuid: string; static src: string; readonly attacks: { attack: Attack; }; readonly spells: { singularity: Spell; teleport: Spell; }; constructor(); } export default TriarchIolin; //# sourceMappingURL=triarch-iolin.d.ts.map