ZSGG Public Library
Arandi Phoenix Guard
Arandi T1 Merc Unit
import { ArandiMercUnit } from "../../../../defaults/arandi.js";
import { Attack } from "../../../../engine/ability.js";
class ArandiPhoenixGuard extends ArandiMercUnit {
override uuid: string;
static override src = "src/zerospace/mercenary/arandi/unit/arandi-phoenix-guard.ts";
constructor() {
super();
this.hexiteCost = 225;
this.fluxCost = 50;
this.buildCount = 2;
this.name = "Arandi Phoenix Guard";
this.description = "Mobile ranged infantry whose attacks slows targets.";
this.tier = "T1";
this.hotkey = "Z";
this.uuid = "43dd50c8-ec0c-42bc-b69b-446049f677e3";
this.internalId = "Troop_Arandi_PhoenixGuard_C";
this.internalPath = "/Game/Nova/Archetypes_Troops/Troop_Arandi_PhoenixGuard.Default__Troop_Arandi_PhoenixGuard_C";
this.internalTags = [
"Attackable.Unit.Troop",
"Attackable.ArmorType.Medium",
"Attackable.Biological",
"Local.Arandi",
];
this.internalSecondaryTags = ["Air", "Infantry"];
this.hp = 160;
this.shields = 0;
this.armor = 0;
this.armorType = "medium";
this.domain = "ground";
this.speed = 600;
this.supply = 2;
this.turnSpeed = 5000;
this.vision = 1800;
this.pushability = 1;
this.attacks.voidBlaster = new Attack({
internalId: "Default__Weapon_Arandi_PhoenixGuard_C",
name: "Void Blaster",
damage: 7,
range: 1000,
cooldown: 0.4,
armorPenetration: 0,
delay: 0,
targets: ["ground", "air"],
parentId: this.id,
parentUUID: this.uuid,
});
}
}
export default ArandiPhoenixGuard;