ZSGG Public Library
Mechanical Research Lab
Protectorate T2.5 Tech Building
import { ProtectorateTechBuilding } from "../../../../defaults/protectorate.js";
export class MechanicalResearchLab extends ProtectorateTechBuilding {
override uuid: string;
static override src = "src/zerospace/faction/protectorate/building/mechanical-research-lab.ts";
constructor() {
super();
this.shortName = "Mech. R. Lab";
this.hexiteCost = 100;
this.fluxCost = 25;
this.buildTime = 30;
this.name = "Mechanical Research Lab";
this.description = "Research structure for units produced from the Assembly Plant and Skydock.";
this.tier = "T2.5";
this.uuid = "47308d61-f17d-4191-85c8-95820671a372";
this.hp = 1000;
this.shields = 0;
this.armor = 1;
this.armorType = "light";
this.createdBy = ["faction/protectorate/unit/prot-build-drone"];
this.unlockedBy = ["faction/protectorate/building/assembly-plant", "faction/protectorate/building/skydock"];
this.unlocks = ["faction/protectorate/building/war-foundry"];
this.providesUpgradesFor = [
"faction/protectorate/unit/predator",
"faction/protectorate/unit/ironwing",
"faction/protectorate/unit/hellfire",
"faction/protectorate/unit/titan",
"faction/protectorate/unit/cyclops",
"faction/protectorate/unit/juggernaut",
"faction/protectorate/unit/strider",
"faction/protectorate/unit/griffin",
"faction/protectorate/unit/hauler",
];
}
}
export default MechanicalResearchLab;