@zerospacegg/iolin
Version:
Pure TypeScript implementation of ZeroSpace game data processing (PKL-free)
16 lines • 516 B
TypeScript
/**
* Dread Rover - Fast T1 assault vehicle with twin rapid-fire guns
* High-speed nomadic vehicle that embodies perpetual motion and freedom
*/
import { DreadRaidersMercUnit } from "../../../../defaults/dread.js";
import { Attack } from "../../../../engine/ability.js";
declare class DreadRover extends DreadRaidersMercUnit {
uuid: string;
static src: string;
readonly attacks: {
attack: Attack;
};
constructor();
}
export default DreadRover;
//# sourceMappingURL=dread-rover.d.ts.map