@zerospacegg/iolin
Version:
Pure TypeScript implementation of ZeroSpace game data processing (PKL-free)
24 lines • 820 B
TypeScript
/**
* Cha'Kru Warrior - Swift blade-throwing fighter embodying centuries of ritual combat tradition
* Earth-aligned warrior with supernatural speed and ancestral weapon mastery
*/
import { Attack } from "../../../../engine/ability.js";
import type { HotKey, Tier } from "../../../../engine/core.js";
import { ChakruMercUnit } from "../../chakru-classes.js";
declare class ChakruWarrior 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: {
knifeThrow: Attack;
};
constructor();
}
export default ChakruWarrior;
//# sourceMappingURL=chakru-warrior.d.ts.map