@zerospacegg/iolin
Version:
Pure TypeScript implementation of ZeroSpace game data processing (PKL-free)
30 lines • 902 B
TypeScript
/**
* Inquisitress - Legion's warrior-priest and melee combat specialist
* Melee hero with cleave attacks, charge abilities, and sacrificial protection
*/
import { Attack, Spell, Upgrade } from "../../../../engine/ability.js";
import { LegionHeroUnit } from "../../legion-classes.js";
export declare class Inquisitress extends LegionHeroUnit {
uuid: string;
static src: string;
readonly name: string;
readonly hexiteCost: number;
readonly fluxCost: number;
readonly buildTime: number;
readonly buildCount: number;
readonly attacks: {
attack: Attack;
};
readonly spells: {
cleave: Spell;
charge: Spell;
};
readonly upgrades: {
improvedCharge: Upgrade;
improvedCleave: Upgrade;
oneLifeForAnother: Upgrade;
};
constructor();
}
export default Inquisitress;
//# sourceMappingURL=inquisitress.d.ts.map