@zerospacegg/iolin
Version:
Pure TypeScript implementation of ZeroSpace game data processing (PKL-free)
24 lines • 783 B
TypeScript
/**
* Dread Rover - Fast T1 assault vehicle with twin rapid-fire guns
* High-speed nomadic vehicle that embodies perpetual motion and freedom
*/
import { Attack } from "../../../../engine/ability.js";
import { DreadRaidersMercUnit } from "../../dread-classes.js";
import type { Tier, HotKey } from "../../../../engine/core.js";
declare class DreadRover extends DreadRaidersMercUnit {
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 DreadRover;
//# sourceMappingURL=dread-rover.d.ts.map