@zerospacegg/iolin
Version:
Pure TypeScript implementation of ZeroSpace game data processing (PKL-free)
24 lines • 804 B
TypeScript
/**
* Valkaru Beast - Massive bio-enhanced war creature forged through ritual combat trials
* T1 heavy tank with devastating melee attacks and incredible durability
*/
import { Attack } from "../../../../engine/ability.js";
import { ValkaruMercUnit } from "../../valkaru-classes.js";
import type { Tier, HotKey } from "../../../../engine/core.js";
declare class ValkaruBeast extends ValkaruMercUnit {
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;
};
constructor();
}
export default ValkaruBeast;
//# sourceMappingURL=valkaru-beast.d.ts.map