ZeroSpace.gg

Elderwomb

Grell T3 Production Building

import { GrellProductionBuilding } from "../../../../defaults/grell.js"; export class Elderwomb extends GrellProductionBuilding { override uuid: string; static override src = "src/zerospace/faction/grell/building/elderwomb.ts"; constructor() { super(); this.hexiteCost = 125; this.fluxCost = 100; this.buildTime = 50; this.buildCount = 1; this.name = "Elderwomb"; this.description = "Advanced unit production structure."; this.tier = "T3"; this.hotkey = "G"; this.uuid = "8b2b7626-918e-490c-972c-13dc8adb2b8a"; this.hp = 1400; this.armor = 1; this.speed = 0; this.shortName = "Elderwomb"; this.creates = ["faction/grell/unit/reaver", "faction/grell/unit/weaver", "faction/grell/unit/behemoth"]; this.createdBy = ["faction/grell/unit/seedling"]; this.unlockedBy = ["faction/grell/building/incubator"]; this.unlocks = ["faction/grell/unit/behemoth", "faction/grell/building/synapse-canopy"]; this.unlocksMercTier = "T3"; } } export default Elderwomb;