@zerospacegg/iolin
Version:
Pure TypeScript implementation of ZeroSpace game data processing (PKL-free)
23 lines • 742 B
TypeScript
/**
* Steelsworn - Legion's elite warrior unit with momentum building
* Professional soldiers who combine faith with flawless combat technique
*/
import { Attack } from "../../../../engine/ability.js";
import { LegionArmyUnit } from "../../legion-classes.js";
import type { Tier } from "../../../../engine/core.js";
export declare class Steelsworn extends LegionArmyUnit {
uuid: string;
static src: string;
readonly name: string;
readonly tier: Tier;
readonly hexiteCost: number;
readonly fluxCost: number;
readonly buildTime: number;
readonly buildCount: number;
readonly attacks: {
attack: Attack;
};
constructor();
}
export default Steelsworn;
//# sourceMappingURL=steelsworn.d.ts.map