Modding Help Changing Race Ship

Discussion in 'Starbound Modding' started by Infinitato, Jul 23, 2019.

  1. Infinitato

    Infinitato Big Damn Hero

  2. bk3k

    bk3k Oxygen Tank

    This guide might be somewhat useful to you although it isn't specific to your question.

    But I can give you your patches easily enough too.
    universe_server.config.patch
    Code:
    [
      [
        {
          "op" : "test",
          "path" : "/speciesShips/kitsune",
          "inverse" : true
        },
        {
          "op" : "add",
          "path" : "/speciesShips/kitsune",
          "value" : {}
        }
      ],
      [
        {
          "op" : "replace",
          "path" : "/speciesShips/kitsune",
          "value" : [
            "/ships/dragon/dragont0.structure",
            "/ships/dragon/dragont1.structure",
            "/ships/dragon/dragont2.structure",
            "/ships/dragon/dragont3.structure",
            "/ships/dragon/dragont4.structure",
            "/ships/dragon/dragont5.structure",
            "/ships/dragon/dragont6.structure",
            "/ships/dragon/dragont7.structure",
            "/ships/dragon/dragont8.structure",
            "/ships/dragon/dragont8.structure",
            "/ships/dragon/dragont8.structure"
          ]
        }
      ]
    ]
    
    _metadata
    Code:
    {
      "author" : "Infinitato",
      "description" : "Kitsune use the ship from Draconis Race.",
      "friendlyName" : "Kitsune use Draconis ship patch",
      "includes" : [ "kitsunerace" ],
      "name" : "Kitsune_Draconis_shipPatch",
      "requires" : [ "Draconis Race(Humanoid Dragon Race)" ]
    }
    
    But I think you should still read over that guide to understand how that works.
     
  3. Infinitato

    Infinitato Big Damn Hero

    Thanks! The guide was helpful too.
     

Share This Page