@zerospacegg/iolin
Version:
Pure TypeScript implementation of ZeroSpace game data processing (PKL-free)
20 lines • 696 B
TypeScript
/**
* Hellfire - Long-range artillery platform with devastating splash damage and siege capabilities
* Mobile artillery unit with multi-volley missile system
*/
import type { Tier } from "../../../../engine/core.js";
import { ProtectorateArmyUnit } from "../../protectorate-classes.js";
export declare class Hellfire extends ProtectorateArmyUnit {
uuid: string;
static src: string;
readonly name: string;
readonly tier: Tier;
readonly supply: number;
readonly hexiteCost: number;
readonly fluxCost: number;
readonly buildTime: number;
get infuseCost(): number | undefined;
constructor();
}
export default Hellfire;
//# sourceMappingURL=hellfire.d.ts.map