@zerospacegg/iolin
Version:
Pure TypeScript implementation of ZeroSpace game data processing (PKL-free)
24 lines • 851 B
TypeScript
/**
* Valkaru Shock Trooper - Elite heavy infantry with electrical weapons and advanced combat armor
* T2 heavy unit specializing in electrical warfare and front-line assault operations
*/
import { Attack } from "../../../../engine/ability.js";
import type { HotKey, Tier } from "../../../../engine/core.js";
import { ValkaruMercUnit } from "../../valkaru-classes.js";
declare class ValkaruShockTrooper 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: {
shockBlast: Attack;
};
constructor();
}
export default ValkaruShockTrooper;
//# sourceMappingURL=valkaru-shock-trooper.d.ts.map