ZeroSpace.gg

Synapse Canopy

Grell T3.5 Tech Building

import { GrellTechBuilding } from "../../../../defaults/grell.js"; export class SynapseCanopy extends GrellTechBuilding { override uuid: string; static override src = "src/zerospace/faction/grell/building/synapse-canopy.ts"; constructor() { super(); this.hexiteCost = 100; this.fluxCost = 75; this.buildTime = 40; this.name = "Synapse Canopy"; this.description = "Research structure for units produced from the Elderwomb. \nUnlocks: second tier Incubator unit upgrades."; this.tier = "T3.5"; this.hotkey = "C"; this.uuid = "22d03f08-e363-4f1f-82e1-0f4e8546f857"; this.shortName = "Synapse Canopy"; this.hp = 1000; this.unlocks = ["faction/grell/unit/weaver", "faction/grell/unit/reaver"]; this.createdBy = ["faction/grell/unit/seedling"]; this.unlockedBy = ["faction/grell/building/elderwomb"]; this.providesUpgradesFor = ["faction/grell/unit/reaver", "faction/grell/unit/weaver"]; } } export default SynapseCanopy;