@zerospacegg/iolin
Version:
Pure TypeScript implementation of ZeroSpace game data processing (PKL-free)
25 lines • 828 B
TypeScript
/**
* Cha'Kru Rageborn - Bio-energetic berserker with ABES combat enhancement system
* T2 earth-aligned warrior whose fury builds destructive power through combat
*/
import { Attack } from "../../../../engine/ability.js";
import type { HotKey, Tier } from "../../../../engine/core.js";
import { ChakruMercUnit } from "../../chakru-classes.js";
declare class ChakruRageborn 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: {
attack: Attack;
stomp: Attack;
};
constructor();
}
export default ChakruRageborn;
//# sourceMappingURL=chakru-rageborn.d.ts.map