UNPKG

@zerospacegg/iolin

Version:

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

24 lines 830 B
/** * Cha'Kru Ghost Crab - Invisible suicide bomber infused with explosive Leviathan essence * Stealth unit that phases through dimensional barriers to deliver devastating explosions */ import { Attack } from "../../../../engine/ability.js"; import type { HotKey, Tier } from "../../../../engine/core.js"; import { ChakruMercUnit } from "../../chakru-classes.js"; declare class ChakruGhostCrab 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: { explode: Attack; }; constructor(); } export default ChakruGhostCrab; //# sourceMappingURL=chakru-ghost-crab.d.ts.map