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 = 200;
this.fluxCost = 50;
this.buildCount = 2;
this.name = "Arandi Phoenix Guard";
this.description = "Its weapon slows down the taret. If the target unit dies, a hallucination is created.";
this.tier = "T1";
this.hotkey = "";
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.FlyingUnit",
"Attackable.ArmorType.Medium",
"Attackable.Biological",
];
this.internalSecondaryTags = ["Air", "Infantry"];
this.hp = 200;
this.shields = 0;
this.armor = 0;
this.armorType = "medium";
this.speed = 650;
this.supply = 3;
this.turnSpeed = 3500;
this.vision = 1800;
this.pushability = 1;
this.attacks.voidBlaster = new Attack({
name: "Void Blaster",
damage: 5,
range: 1000,
cooldown: 1.4,
armorPenetration: 0,
delay: 0.1,
targets: ["ground", "air"],
parentId: this.id,
parentUUID: this.uuid,
});
}
}
export default ArandiPhoenixGuard;