@zerospacegg/iolin
Version:
Pure TypeScript implementation of ZeroSpace game data processing (PKL-free)
24 lines • 860 B
TypeScript
/**
* Valkaru Tow Bot - Utility and support mechanical unit for battlefield logistics and tactical support
* T1 support unit specializing in battlefield utility, repair operations, and tactical coordination
*/
import { Attack } from "../../../../engine/ability.js";
import type { HotKey, Tier } from "../../../../engine/core.js";
import { ValkaruMercUnit } from "../../valkaru-classes.js";
declare class ValkaruTowBot extends ValkaruMercUnit {
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: {
defensiveSystems: Attack;
};
constructor();
}
export default ValkaruTowBot;
//# sourceMappingURL=valkaru-tow-bot.d.ts.map