ZSGG Public Library
Macrogenesis Canopy
Grell T2.5 Tech Building
import { GrellTechBuilding } from "../../../../defaults/grell.js";
export class MacrogenesisCanopy extends GrellTechBuilding {
override uuid!: string;
static override src = "src/zerospace/faction/grell/building/macrogenesis-canopy.ts";
constructor() {
super();
this.hexiteCost = 100;
this.fluxCost = 25;
this.buildTime = 30;
this.name = "Macrogenesis Canopy";
this.description =
"Research structure for units produced from the Incubator. \nUnlocks: Threshers and the second tier Broodwomb unit upgrades.";
this.tier = "T2.5";
this.uuid = "78f0d8d3-aa98-4285-8612-c282ce554e37";
this.shortName = "Macrogenesis Canopy";
this.hp = 1000;
this.unlocks = ["faction/grell/building/skyclutch", "faction/grell/unit/thresher"];
this.createdBy = ["faction/grell/unit/seedling"];
this.unlockedBy = ["faction/grell/building/incubator"];
this.providesUpgradesFor = [
"faction/grell/unit/harbinger",
"faction/grell/unit/grell-keeper",
"faction/grell/unit/mandragora",
"faction/grell/unit/thresher",
];
}
}
export default MacrogenesisCanopy;