@zerospacegg/iolin
Version:
Pure TypeScript implementation of ZeroSpace game data processing (PKL-free)
23 lines • 734 B
TypeScript
/**
* Thrall - Legion's basic infantry unit with battle frenzy capabilities
* Religious warriors enhanced by divine blessing and upgrade potential
*/
import { Attack } from "../../../../engine/ability.js";
import { LegionArmyUnit } from "../../legion-classes.js";
import type { Tier } from "../../../../engine/core.js";
export declare class Thrall 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 Thrall;
//# sourceMappingURL=thrall.d.ts.map