UNPKG

@zerospacegg/iolin

Version:

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

24 lines 804 B
/** * Cha'Kru Clackjaw - Ritualistic berserker warrior with blood magic enhanced chitinous armor * Heavy armored warrior who transforms combat into sacred ritual */ import { Attack } from "../../../../engine/ability.js"; import type { HotKey, Tier } from "../../../../engine/core.js"; import { ChakruMercUnit } from "../../chakru-classes.js"; declare class ChakruClackjaw extends ChakruMercUnit { 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: { attack: Attack; }; constructor(); } export default ChakruClackjaw; //# sourceMappingURL=chakru-clackjaw.d.ts.map