ZeroSpace.gg

Skyclutch

Grell T2.5 Tech Building

import { GrellTechBuilding } from "../../../../defaults/grell.js"; export class Skyclutch extends GrellTechBuilding { override uuid: string; static override src = "src/zerospace/faction/grell/building/skyclutch.ts"; constructor() { super(); this.hexiteCost = 100; this.fluxCost = 25; this.buildTime = 25; this.name = "Skyclutch"; this.description = "Enables the production of Skrell and Behemoths."; this.tier = "T2.5"; this.uuid = "3ceb6fd7-6c49-4d5d-9635-c6e7cdc595bd"; this.shortName = "Skyclutch"; this.hp = 1000; this.unlocks = ["faction/grell/unit/skrell", "faction/grell/unit/behemoth"]; this.createdBy = ["faction/grell/unit/seedling"]; this.unlockedBy = ["faction/grell/building/macrogenesis-canopy"]; this.providesUpgradesFor = ["faction/grell/unit/skrell", "faction/grell/unit/behemoth"]; } } export default Skyclutch;