ZSGG Public Library
Armory
Legion T2.5 Tech Building
import { LegionTechBuilding } from "../../../../defaults/legion.js";
export class Armory extends LegionTechBuilding {
override uuid: string;
static override src = "src/zerospace/faction/legion/building/armory.ts";
constructor() {
super();
this.hexiteCost = 100;
this.fluxCost = 25;
this.buildTime = 25;
this.buildCount = 1;
this.name = "Armory";
this.description = "Research structure for Legion heroes.";
this.tier = "T2.5";
this.uuid = "cdc86f55-32a9-4cdd-a7a1-7c222522885d";
this.hp = 1000;
this.armor = 1;
this.armorType = "building";
this.speed = 0;
this.createdBy = ["faction/legion/unit/legion-build-drone"];
this.unlockedBy = ["faction/legion/building/citadel"];
this.providesUpgradesFor = [
"faction/legion/hero/galavax",
"faction/legion/hero/inquisitress",
"faction/legion/hero/kraegar",
];
}
}
export default Armory;