ZeroSpace.gg

Research Lab

Protectorate T1.5 Tech Building

import { ProtectorateTechBuilding } from "../../../../defaults/protectorate.js"; export class ResearchLab extends ProtectorateTechBuilding { override uuid: string; static override src = "src/zerospace/faction/protectorate/building/research-lab.ts"; constructor() { super(); this.hexiteCost = 100; this.fluxCost = 25; this.buildTime = 22; this.buildCount = 1; this.name = "Research Lab"; this.description = "Research structure for units produced from the Barracks. \nUnlocks: Sentinel"; this.tier = "T1.5"; this.uuid = "1f2d6c08-bb05-402f-8bb7-9232c3083ded"; this.hp = 1000; this.shields = 0; this.armorType = "building"; this.createdBy = ["faction/protectorate/unit/prot-build-drone"]; this.unlockedBy = ["faction/protectorate/building/prot-barracks", "faction/protectorate/building/supply-platform"]; this.unlocks = ["faction/protectorate/unit/sentinel"]; this.providesUpgradesFor = [ "faction/protectorate/unit/commando", "faction/protectorate/unit/bastion", "faction/protectorate/unit/sentinel", ]; } } export default ResearchLab;