@zerospacegg/iolin
Version:
Pure TypeScript implementation of ZeroSpace game data processing (PKL-free)
16 lines • 537 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 "../../../../defaults/valkaru.js";
declare class ValkaruBeast extends ValkaruMercUnit {
uuid: string;
static src: string;
readonly attacks: {
attack: Attack;
};
constructor();
}
export default ValkaruBeast;
//# sourceMappingURL=valkaru-beast.d.ts.map