ZSGG Public Library
Young Canopy
Grell T1.5 Tech Building
import { GrellTechBuilding } from "../../../../defaults/grell.js";
export class YoungCanopy extends GrellTechBuilding {
override uuid: string;
static override src = "src/zerospace/faction/grell/building/young-canopy.ts";
constructor() {
super();
this.hexiteCost = 100;
this.fluxCost = 25;
this.buildTime = 25;
this.name = "Young Canopy";
this.description = "Research structure for units produced from the Broodwomb. \nUnlocks: Mandragoras and Incubators.";
this.tier = "T1.5";
this.uuid = "3b98ee3d-d30f-495e-bb41-8dfc48f072ba";
this.shortName = "Young Canopy";
this.hp = 1000;
this.unlocks = ["faction/grell/unit/mandragora", "faction/grell/building/incubator"];
this.createdBy = ["faction/grell/unit/seedling"];
this.unlockedBy = ["faction/grell/building/broodwomb"];
this.providesUpgradesFor = ["faction/grell/unit/stinger", "faction/grell/unit/lasher"];
}
}
export default YoungCanopy;