Modding Discussion how can I add crafting for a specific race ?

Discussion in 'Starbound Modding' started by MarkasDenver, Apr 14, 2020.

  1. MarkasDenver

    MarkasDenver Void-Bound Voyager

    Please, tell me, how can I add craft for specific race ?
     
    Last edited: Apr 14, 2020
  2. DrPvtSkittles

    DrPvtSkittles Master Astronaut

    Stuff only a certain race can make, is in their species file. If this is your race, you can edit the species file with the new items, if this is for another race you can make a patch for their species file.


    The code would look something like:

    Code:
    [
        { "op" : "add", "path" : "/defaultBlueprints/tier1/-", "value" : { "item" : "yourfirstitem" } },
        { "op" : "add", "path" : "/defaultBlueprints/tier1/-", "value" : { "item" : "yourseconditem" } },
        { "op" : "add", "path" : "/defaultBlueprints/tier1/-", "value" : { "item" : "yourthirditem" } }
       
    ]
     

Share This Page