@zerospacegg/iolin
Version:
Pure TypeScript implementation of ZeroSpace game data processing (PKL-free)
20 lines • 685 B
TypeScript
/**
* Man-Eater - Grell underground predator with splash damage and burrow abilities
* Medium armor, devastating splash attacks, and terrain-bypassing burrow mechanics
*/
import type { HotKey, Tier } from "../../../../engine/core.js";
import { GrellArmyUnit } from "../../grell-classes.js";
export declare class ManEater extends GrellArmyUnit {
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;
constructor();
}
export default ManEater;
//# sourceMappingURL=man-eater.d.ts.map