mirror of
https://github.com/curioustorvald/Terrarum.git
synced 2026-03-08 12:51:51 +09:00
22 lines
598 B
JSON
22 lines
598 B
JSON
{
|
|
"basegame:176": { /* A recipe for Wooden Platform */
|
|
"workbench": "", /* Optional workbench TAGS separated by commas (e.g. smelter, saw) */
|
|
"ingredients": [ /* Multiple ingredients denotes alternative recipes */
|
|
[2, 1, "$WOOD", 5000, "$ROCK"] /* This recipe only requires one Wooden Plank */
|
|
]
|
|
},
|
|
|
|
"basegame:176": { /* alternative recipes can be added like this */
|
|
"workbench": "SOME_WORKBENCH",
|
|
"ingredients": [
|
|
[5, 5000, "basegame:161"]
|
|
]
|
|
},
|
|
|
|
"basegame:161": {
|
|
"workbench": "",
|
|
"ingredients": [
|
|
[4, 1, "$WOOD", 2, "$ROCK"]
|
|
]
|
|
}
|
|
} |