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";
override get infuseCost(): number | undefined {
return 2;
}
constructor() {
super();
this.name = "Recon Drone";
this.hexiteCost = 25;
this.tier = "T0";
this.supply = 1;
this.maxOwned = 2;
this.domain = "air";
this.uuid = "e638dca7-2de6-4204-b694-0033b943b504";
this.description = "Light flying scouting drone. Limit of 3.";
this.hp = 50;
this.speed = 800;
this.createdBy = ["faction/protectorate/building/operating-tower"];
}
}
export default ReconDrone;