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