summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjc_gargma <jc_gargma@iserlohn-fortress.net>2022-10-30 13:35:24 -0700
committerjc_gargma <jc_gargma@iserlohn-fortress.net>2022-10-30 13:35:24 -0700
commitaf60021b36e2d2f1528bc99fa601059c77b069de (patch)
tree3e23ef5be32d639438317ad45b52846ffaa83272
parentOffload the 40mm shotgun rounds fixes to the grenade crafting mod. (diff)
downloadcataclysm-bn-mod_recipe-fixes-af60021b36e2d2f1528bc99fa601059c77b069de.tar.xz
Remove coconut milk as a component of dehydrated fruit.
-rw-r--r--Readme.txt4
-rw-r--r--json/recipes/food/dry.json17
2 files changed, 21 insertions, 0 deletions
diff --git a/Readme.txt b/Readme.txt
index 88924dd..82f7af4 100644
--- a/Readme.txt
+++ b/Readme.txt
@@ -111,3 +111,7 @@ Powdered eggs requiring water is the entire point of these variants.
---
Allow leg ammo pouches to use rags/leather instead of chest ammo pouches.
Considering how long it takes to craft, the extra stage made them take even longer.
+
+---
+No longer allow coconut milk to create dehydrated fruit.
+Water into fruit? Nope.
diff --git a/json/recipes/food/dry.json b/json/recipes/food/dry.json
new file mode 100644
index 0000000..5c500dd
--- /dev/null
+++ b/json/recipes/food/dry.json
@@ -0,0 +1,17 @@
+[
+ {
+ "type": "recipe",
+ "result": "dry_fruit",
+ "category": "CC_FOOD",
+ "subcategory": "CSC_FOOD_DRY",
+ "skill_used": "cooking",
+ "difficulty": 2,
+ "time": "40 m",
+ "autolearn": true,
+ "batch_time_factors": [ 80, 1 ],
+ "tools": [ [ [ "dehydrator", 25 ], [ "char_smoker", 25 ] ] ],
+ "components": [
+ [ [ "sweet_fruit", 1, "LIST" ], [ "coconut", 1 ] ]
+ ]
+ }
+]