@zerospacegg/iolin
Version:
Pure TypeScript implementation of ZeroSpace game data processing (PKL-free)
25 lines • 819 B
TypeScript
/**
* Reaver - Grell heavy assault unit with devastating charge abilities
* Bio-engineered shock assault specialist with ABES-powered charge mechanics
*/
import { Upgrade } from "../../../../engine/ability.js";
import type { HotKey, Tier } from "../../../../engine/core.js";
import { GrellArmyUnit } from "../../grell-classes.js";
export declare class Reaver extends GrellArmyUnit {
uuid: string;
static src: string;
readonly upgrades: {
improvedCharge: Upgrade;
toughenedCarapace: Upgrade;
};
readonly name: string;
readonly tier: Tier;
readonly hotkey: HotKey;
readonly hexiteCost: number;
readonly fluxCost: number;
readonly buildTime: number;
readonly buildCount: number;
constructor();
}
export default Reaver;
//# sourceMappingURL=reaver.d.ts.map