Modding Help How does one make the tech station destructible ?

Discussion in 'Starbound Modding' started by Mysteriez, Dec 12, 2013.

  1. Mysteriez

    Mysteriez Void-Bound Voyager

    Well, question in the title.
    Apparently, nothing distinguishes this item from any other one...except THIS.
    And, maybe it would be useful to do the reverse : make an object indestructible.
    Thanks !
     
  2. Okash

    Okash Void-Bound Voyager

    It's not that the tech station is indestructible - it's more that the ship locks it down.

    Open

    assets\ships\<desired race>\dropship.structure

    Edit

    Code:
    {
          "value" : [142, 255, 142, 255],
          "foregroundBlock" : false,
          "backgroundBlock" : true,
          "backgroundMat" : "apexshipwall",
          "object" : "techstation",
          "objectParameters" : {
            "unbreakable" : true
          }
        },

    "unbreakable" : true should be "unbreakable" : false
     
  3. Mysteriez

    Mysteriez Void-Bound Voyager

    Thank you, I couldn't possibly find this alone !
     

Share This Page