Modding Discussion treasured trophies

Discussion in 'Starbound Modding' started by amirmiked12, Apr 28, 2017.

  1. amirmiked12

    amirmiked12 Parsec Taste Tester

    im tring to add an item that be purchase able from treasured trophies .
    how should i do it?
    is it right?
    { "op" : "add", "path" : "/interactData/items/-", "value" : {"item" : "whatever i want" } }
    and its my patch name.
    treasuredtrophies.object.patch
     
  2. Sparklink

    Sparklink Ketchup Robot

    Yes that is correct.
    ]
    {"op":"add","path":"/interactData/items/-","value": {"item":"your_item"} }
    [

    Never mind I was wrong about what I said above.

    You will need to create a recipe with the tag treasutredtrophies. The vendor actually works like more like a crafting station than all other merchants. The configuration for the vendor has a special perameter
    "requiresBlueprint" : false,
    Technically you are crafting the items not purchasing them put only this tag in the groups of your recipe so that it will be added to the selection of the vendor.
    "groups" : [ "treasuredtrophies" ]
    (Two notes: first your patch is correct it simply was not the right place to use on; second you can probably put the recipe file in any folder in the recipes folder, have not tested it myself)
     
    Last edited: Apr 28, 2017
  3. amirmiked12

    amirmiked12 Parsec Taste Tester

Share This Page