ZeroSpace.gg

Valkaru Mortar Brute

Valkaru T2 Merc Unit

import { ValkaruMercUnit } from "../../../../defaults/valkaru.js"; import { Attack } from "../../../../engine/ability.js"; class ValkaruMortarBrute extends ValkaruMercUnit { override uuid: string; static override src = "src/zerospace/mercenary/valkaru/unit/valkaru-mortar-brute.ts"; constructor() { super(); this.hexiteCost = 150; this.fluxCost = 150; this.name = "Valkaru Mortar Brute"; this.tier = "T2"; this.internalId = "Troop_Valkaru_MP_Cannoneer_C"; this.internalPath = "/Game/Nova/Archetypes_Troops/Multiplayer/Valkaru/Cannoneer/Troop_Valkaru_MP_Cannoneer.Default__Troop_Valkaru_MP_Cannoneer_C"; this.internalTags = [ "Attackable.Unit.Troop", "Attackable.Unit.Light", "Attackable.Biological", "Attackable.ArmorType.Heavy", "Attackable.Beast", ]; this.internalSecondaryTags = ["Infantry"]; this.uuid = "0244802d-aad8-4d26-b1f9-b258dc0ce60a"; this.description = "Heavy long-range artillery with powerful splash damage."; this.shortName = "Mortar Brute"; this.hp = 500; this.stunResist = 0; this.shields = 0; this.armor = 1; this.armorType = "heavy"; this.speed = 500; this.supply = 4; this.turnSpeed = 7000; this.createdBy = ["mercenary/valkaru/building/valkaru-war-vault"!]; this.attacks.archeotechMortar = new Attack({ internalId: "Default__Weapon_Valkaru_MP_Cannoneer_C", name: "Archeotech Mortar", damage: 75, cooldown: 3, range: 2000, targets: ["ground"], splash: { multiplier: 0.7, range: 600 }, armorPenetration: 0, delay: 0, parentId: this.id, parentUUID: this.uuid, }); } } export default ValkaruMortarBrute;