@zerospacegg/iolin
Version:
Pure TypeScript implementation of ZeroSpace game data processing (PKL-free)
16 lines • 531 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 { DreadRaidersMercUnit } from "../../../../defaults/dread.js";
import { Attack } from "../../../../engine/ability.js";
declare class DreadFlamer extends DreadRaidersMercUnit {
uuid: string;
static src: string;
readonly attacks: {
attack: Attack;
};
constructor();
}
export default DreadFlamer;
//# sourceMappingURL=dread-flamer.d.ts.map