ZeroSpace.gg

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 = 200; 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", ]; 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 = "heavy"; this.speed = 450; this.supply = 3; this.turnSpeed = 4000; this.createdBy = ["mercenary/valkaru/building/valkaru-merc-outpost"!]; this.unlockedBy = ["mercenary/valkaru/building/valkaru-merc-outpost"!]; this.attacks.shockBlast = new Attack({ name: "Shock Blast", damage: 30, cooldown: 3, range: 550, targets: ["ground"], 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;