@zerospacegg/iolin
Version:
Pure TypeScript implementation of ZeroSpace game data processing (PKL-free)
20 lines • 647 B
TypeScript
/**
* Lasher - Ranged combat unit. Attacks ground and air units.
* Light armor, high mobility, long-range attacks with stealth potential
*/
import type { HotKey, Tier } from "../../../../engine/core.js";
import { GrellArmyUnit } from "../../grell-classes.js";
export declare class Lasher 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 Lasher;
//# sourceMappingURL=lasher.d.ts.map