UNPKG

@zerospacegg/iolin

Version:

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

24 lines 700 B
/** * Mammoth - Legion's massive war beast with rider system * Colossal creature with religious bonding and devastating anti-building attacks */ import { LegionArmyUnit } from "../../../../defaults/legion.js"; import { Attack, Passive, Spell } from "../../../../engine/ability.js"; export declare class Mammoth extends LegionArmyUnit { uuid: string; static src: string; get infuseCost(): number | undefined; readonly attacks: { attack: Attack; }; readonly passives: { thrallRider: Passive; trample: Passive; }; readonly spells: { storm: Spell; }; constructor(); } export default Mammoth; //# sourceMappingURL=mammoth.d.ts.map