ZSGG Public Library
Broodwomb
Grell T1 Production Building
import { GrellProductionBuilding } from "../../../../defaults/grell.js";
export class Broodwomb extends GrellProductionBuilding {
override uuid: string;
static override src = "src/zerospace/faction/grell/building/broodwomb.ts";
constructor() {
super();
this.hexiteCost = 75;
this.fluxCost = 0;
this.buildTime = 35;
this.name = "Broodwomb";
this.description = "Basic unit production structure.";
this.tier = "T1";
this.hotkey = "D";
this.unlocksMercTier = "T1";
this.uuid = "9ddf1f1e-3ddc-466f-9875-6dd9b36f6279";
this.hp = 1000;
this.shields = 0;
this.armor = 1;
this.armorType = "building";
this.speed = 0;
this.creates = [
"faction/grell/unit/stinger",
"faction/grell/unit/lasher",
"faction/grell/unit/mandragora",
"faction/grell/unit/skrell",
];
this.createdBy = ["faction/grell/unit/seedling"];
this.unlockedBy = ["faction/grell/building/nourishing-pod"];
this.unlocks = [
"faction/grell/unit/stinger",
"faction/grell/unit/lasher",
"faction/grell/building/young-canopy",
];
}
}
export default Broodwomb;