ZSGG Public Library
Valkaru Shock Trooper
Valkaru T2 Merc Unit
import { ValkaruMercUnit } from "../../../../defaults/valkaru.js";
import { Attack } from "../../../../engine/ability.js";
class ValkaruShockTrooper extends ValkaruMercUnit {
override uuid: string;
static override src = "src/zerospace/mercenary/valkaru/unit/valkaru-shock-trooper.ts";
constructor() {
super();
this.hexiteCost = 175;
this.fluxCost = 75;
this.buildCount = 2;
this.name = "Valkaru Shock Trooper";
this.tier = "T2";
this.hotkey = "X";
this.internalId = "Troop_Valk_ShockTrooper_C";
this.internalPath = "/Game/Nova/Archetypes_Troops/Troop_Valk_ShockTrooper.Default__Troop_Valk_ShockTrooper_C";
this.internalTags = [
"Attackable.Unit.Troop",
"Attackable.Unit.Light",
"Attackable.ArmorType.Medium",
"Attackable.Biological",
"Local.Valkaru",
];
this.internalSecondaryTags = ["Infantry"];
this.uuid = "804349a6-20a1-459b-95a3-bcd50a40fb26";
this.description = "Medium ranged infantry with splash damage.";
this.shortName = "Shock Trooper";
this.hp = 375;
this.shields = 0;
this.armor = 5;
this.armorType = "medium";
this.speed = 450;
this.supply = 4;
this.turnSpeed = 4000;
this.createdBy = ["mercenary/valkaru/building/valkaru-war-vault"!];
this.attacks.ionicCoil = new Attack({
internalId: "Default__Valkaru_Shock_Rifle_C",
name: "Ionic Coil",
damage: 30,
cooldown: 3,
range: 1250,
targets: ["ground"],
splash: { multiplier: 1, range: 250 },
description: "Electrical discharge weapon that delivers devastating energy blasts against enemy formations",
armorPenetration: 0,
delay: 0.4,
parentId: this.id,
parentUUID: this.uuid,
});
}
}
export default ValkaruShockTrooper;