ZeroSpace.gg

Marran Mothership

Marran Special Building

import { MarranMercOutpost } from "../../../../defaults/marran.js"; export class MarranMothership extends MarranMercOutpost { override uuid: string; static override src = "src/zerospace/mercenary/marran/building/marran-mothership.ts"; constructor() { super(); this.name = "Marran Mothership"; this.uuid = "101c544e-bcfc-47f1-8f38-3811a5a16187"; this.shortName = "Mothership"; this.hp = 1200; this.armor = 1; this.speed = 250; 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/unit/marran-pulse-skimmer", "mercenary/marran/unit/marran-sharpshooter", "mercenary/marran/unit/marran-badger", "mercenary/marran/unit/marran-halo-tank", ]; } } export default MarranMothership;