@zerospacegg/iolin
Version:
Pure TypeScript implementation of ZeroSpace game data processing (PKL-free)
27 lines • 890 B
TypeScript
/**
* Cha'Kru Cultist - Mystical priest-warrior who serves as battlefield support and living conduit to the Leviathan
* Earth-aligned devotee with acidic blood magic and healing abilities
*/
import { Attack, Spell } from "../../../../engine/ability.js";
import { ChakruMercUnit } from "../../chakru-classes.js";
import type { Tier, HotKey } from "../../../../engine/core.js";
declare class ChakruCultist extends ChakruMercUnit {
uuid: string;
static src: string;
readonly name: string;
readonly tier: Tier;
readonly hotkey: HotKey;
readonly hexiteCost: number;
readonly fluxCost: number;
readonly buildTime: number;
readonly buildCount: number;
readonly attacks: {
acidicThrow: Attack;
};
readonly spells: {
heal: Spell;
};
constructor();
}
export default ChakruCultist;
//# sourceMappingURL=chakru-cultist.d.ts.map