@zerospacegg/iolin
Version:
Pure TypeScript implementation of ZeroSpace game data processing (PKL-free)
19 lines • 623 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 { ChakruMercUnit } from "../../../../defaults/chakru.js";
import { Attack, Spell } from "../../../../engine/ability.js";
declare class ChakruCultist extends ChakruMercUnit {
uuid: string;
static src: string;
readonly attacks: {
acidicThrow: Attack;
};
readonly spells: {
heal: Spell;
};
constructor();
}
export default ChakruCultist;
//# sourceMappingURL=chakru-cultist.d.ts.map