Mod articles
-
(Advanced) Create custom recipes files
You can create your own custom recipes by creating new JSON file inside Custom Recipes folder (e.g. MyCustomRecipes.json).
JSON.Net is lenient in JSON file specs, you can have comments and trailing commas in the file.
JSON File Structure
JSON file with some explanations:
[
{
//Start of recipe block
//craft category (where you can craft them)
"CraftCategoryID": "Drug", //or you can write it as 8 (number)
//result item id
"ResultItemID": 2156, //also can be written as "Item_Kin" (enum, with double quotes)
//ingredient for the recipe, you can put maximum 6 item here
...