@zerospacegg/iolin
Version:
Pure TypeScript implementation of ZeroSpace game data processing (PKL-free)
24 lines • 798 B
TypeScript
/**
* Dread Flamer - Elite T3 flame unit with arc attack capabilities
* Heavy armored revolutionary who uses fire as both weapon and symbol of liberation
*/
import { Attack } from "../../../../engine/ability.js";
import type { HotKey, Tier } from "../../../../engine/core.js";
import { DreadRaidersMercUnit } from "../../dread-classes.js";
declare class DreadFlamer 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 DreadFlamer;
//# sourceMappingURL=dread-flamer.d.ts.map