ZSGG Public Library
Incubator
Grell T2 Production Building
import { GrellProductionBuilding } from "../../../../defaults/grell.js";
export class Incubator extends GrellProductionBuilding {
override uuid: string;
static override src = "src/zerospace/faction/grell/building/incubator.ts";
constructor() {
super();
this.hexiteCost = 100;
this.fluxCost = 50;
this.buildTime = 40;
this.buildCount = 1;
this.name = "Incubator";
this.description = "Medium unit production structure.";
this.tier = "T2";
this.hotkey = "F";
this.uuid = "abb4b3c7-4be7-4be5-b72c-46abefd8411c";
this.hp = 1200;
this.armor = 1;
this.speed = 0;
this.shortName = "Incubator";
this.creates = ["faction/grell/unit/harbinger", "faction/grell/unit/grell-keeper", "faction/grell/unit/thresher"];
this.createdBy = ["faction/grell/unit/seedling"];
this.unlockedBy = ["faction/grell/building/young-canopy"];
this.unlocks = [
"faction/grell/unit/harbinger",
"faction/grell/unit/grell-keeper",
"faction/grell/building/elderwomb",
"faction/grell/building/macrogenesis-canopy",
];
this.unlocksMercTier = "T2";
}
}
export default Incubator;