ZeroSpace.gg

Assembly Plant

Protectorate T2 Production Building

import { ProtectorateProductionBuilding } from "../../../../defaults/protectorate.js"; export class AssemblyPlant extends ProtectorateProductionBuilding { override uuid: string; static override src = "src/zerospace/faction/protectorate/building/assembly-plant.ts"; constructor() { super(); this.hexiteCost = 100; this.fluxCost = 50; this.buildTime = 35; this.buildCount = 1; this.name = "Assembly Plant"; this.description = "Basic vehicle production structure."; this.tier = "T2"; this.unlocksMercTier = "T2"; this.uuid = "5b1cd428-e8f0-4985-b21d-dd13023b1f1c"; this.hp = 1200; this.shields = 0; this.armorType = "heavy"; this.creates = [ "faction/protectorate/unit/predator", "faction/protectorate/unit/hellfire", "faction/protectorate/unit/titan", ]; this.createdBy = ["faction/protectorate/unit/prot-build-drone"]; this.unlockedBy = ["faction/protectorate/building/prot-barracks"]; this.unlocks = [ "faction/protectorate/unit/predator", "faction/protectorate/unit/hellfire", "faction/protectorate/unit/titan", "faction/protectorate/building/mechanical-research-lab", ]; } } export default AssemblyPlant;