ZeroSpace.gg

Marran Bulwark

Marran Special Building

import { MarranMercOutpost } from "../../../../defaults/marran.js"; export class MarranBulwark extends MarranMercOutpost { override uuid: string; static override src = "src/zerospace/mercenary/marran/building/marran-bulwark.ts"; constructor() { super(); this.name = "Marran Bulwark"; this.hotkey = "T"; this.uuid = "101c544e-bcfc-47f1-8f38-3811a5a16187"; this.shortName = "Bulwark"; this.hexiteCost = 125; this.fluxCost = 0; this.buildTime = 50; this.hp = 1200; this.armor = 1; this.speed = 300; this.createdBy = []; this.unlockedBy = []; this.creates = [ "mercenary/marran/unit/marran-pulse-skimmer"!, "mercenary/marran/unit/marran-sharpshooter"!, "mercenary/marran/unit/marran-badger"!, "mercenary/marran/unit/marran-halo-tank"!, "mercenary/marran/unit/marran-heavy-trooper"!, ]; this.unlocks = ["mercenary/marran/topbar/pulse-barrage"]; } } export default MarranBulwark;