You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: doc/JSON/ITEM.md
+3-1Lines changed: 3 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1002,7 +1002,8 @@ If an item is BREWABLE, it can be placed in a vat and will ferment into a differ
1002
1002
"name": { "str_sp": "whiskey wort" },
1003
1003
"description": "Unfermented whiskey. The base of a fine drink. Not the traditional preparation, but you don't have the time. You need to put it in a fermenting vat to brew it.",
1004
1004
"brew_time": "7 days", // A time duration: how long the fermentation will take.
1005
-
"brew_results": [ "wash_whiskey", "yeast" ], // IDs with a multiplier for the amount of results per charge of the brewable items.
1005
+
"brew_results": [ "wash_whiskey", { "item": "yeast", "variant": "foo", "count": 3 } ], // IDs with a multiplier for the amount of results per charge of the brewable items.
1006
+
"brew_results": { "wash_whiskey": 2, "yeast": 3 }, // Alternate format
1006
1007
...
1007
1008
//comestible fields
1008
1009
```
@@ -1024,6 +1025,7 @@ If an item is BREWABLE, it can be placed in a vat and will ferment into a differ
1024
1025
"charges": 1,
1025
1026
"compost_time": "60 days", // the amount of time required to fully compost this item
1026
1027
"compost_results": { "fermented_fertilizer_liquid": 1, "biogas": 250 }, //item IDs and quantities resulting from compost
0 commit comments