ZSGG Public Library
Arandi Horned Mech
Arandi T1 Merc Unit
import { ArandiMercUnit } from "../../../../defaults/arandi.js";
import { Attack } from "../../../../engine/ability.js";
class ArandiHornedMech extends ArandiMercUnit {
override uuid: string;
static override src = "src/zerospace/mercenary/arandi/unit/arandi-horned-mech.ts";
constructor() {
super();
this.hexiteCost = 300;
this.fluxCost = 200;
this.buildCount = 2;
this.name = "Arandi Horned Mech";
this.tier = "T1";
this.hotkey = "";
this.uuid = "bc06f7b0-5707-4c28-81cd-adca4071b789";
this.internalId = "Troop_Arandi_Prison_C";
this.internalPath = "/Game/Nova/Archetypes_Troops/Troop_Arandi_Prison.Default__Troop_Arandi_Prison_C";
this.internalTags = ["Attackable.Unit.Troop", "Attackable.ArmorType.Heavy"];
this.internalSecondaryTags = ["Vehicle"];
this.description = "Weapon projectiles are slow but pass through enemies damaging all on its way.";
this.shields = 0;
this.armor = 2;
this.armorType = "heavy";
this.hp = 420;
this.speed = 495;
this.supply = 3;
this.turnSpeed = 3000;
this.vision = 1600;
this.pushability = 1;
this.createdBy = ["mercenary/arandi/building/arandi-mothership"];
// TODO: Convert to getter - this.infuseCost = 7;
this.attacks.energyPulsar = new Attack({
name: "Energy Pulsar",
damage: 60,
range: 1300,
cooldown: 3,
armorPenetration: 0,
delay: 0.15,
targets: ["ground"],
description: "Channels interdimensional power to destabilize molecular bonds across dimensional barriers",
parentId: this.id,
parentUUID: this.uuid,
});
}
}
export default ArandiHornedMech;