ZSGG Public Library
Recon Drone
Protectorate T0 Special Unit
import { ProtectorateSpecialUnit } from "../../../../defaults/protectorate.js";
export class ReconDrone extends ProtectorateSpecialUnit {
override uuid: string;
static override src = "src/zerospace/faction/protectorate/unit/recon-drone.ts";
/** Scouting drones are priced at a flat 1 rather than the 1.125 the formula gives. */
override infuseCostOverride = 1;
constructor() {
super();
this.name = "Recon Drone";
this.hexiteCost = 25;
this.tier = "T0";
this.supply = 0;
this.maxOwned = 2;
this.domain = "air";
this.uuid = "e638dca7-2de6-4204-b694-0033b943b504";
this.internalId = "Troop_ScoutingDrone_C";
this.internalPath = "/Game/Nova/Archetypes_Troops/Troop_ScoutingDrone.Default__Troop_ScoutingDrone_C";
this.internalTags = [
"Attackable.ArmorType.Light",
"Attackable.FlyingUnit",
"Attackable.Unit.Light",
"Attackable.Unit.ScoutingDrone",
"Attackable.Unit.Troop",
"Logic.NoVeterancy",
"Unit.AutoControlGroup.Ignore",
"Unit.IgnoreAllArmySelect",
];
this.internalSecondaryTags = ["Air", "Vehicle"];
this.description = "Light flying scouting drone. Limit of 3.";
this.hp = 75;
this.speed = 650;
this.vision = 1800;
this.detectionRadius = 1800;
this.turnSpeed = 5000;
this.createdBy = ["faction/protectorate/building/operating-tower"];
}
}
export default ReconDrone;