@zerospacegg/iolin
Version:
Pure TypeScript implementation of ZeroSpace game data processing (PKL-free)
25 lines • 753 B
TypeScript
/**
* Inquisitress - Legion's warrior-priest and melee combat specialist
* Melee hero with cleave attacks, charge abilities, and sacrificial protection
*/
import { LegionHeroUnit } from "../../../../defaults/legion.js";
import { Attack, Spell, Upgrade } from "../../../../engine/ability.js";
export declare class Inquisitress extends LegionHeroUnit {
uuid: string;
static src: string;
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