summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjc_gargma <jc_gargma@iserlohn-fortress.net>2024-02-09 22:25:50 -0800
committerjc_gargma <jc_gargma@iserlohn-fortress.net>2024-02-09 22:25:50 -0800
commit5c66bfadada9970f520caa4f8384a48a7c41e27b (patch)
treea2abe7a5f60444e34c76eed072854aa211562a5f
parentFix plurals on stirfry. (diff)
downloadcataclysm-bn-mod_recipe-fixes-5c66bfadada9970f520caa4f8384a48a7c41e27b.tar.xz
Fix bone broth having a far too high fun value.
-rw-r--r--Readme.txt4
-rw-r--r--json/items/comestible/soup.json9
2 files changed, 13 insertions, 0 deletions
diff --git a/Readme.txt b/Readme.txt
index f236050..59b0b7c 100644
--- a/Readme.txt
+++ b/Readme.txt
@@ -166,3 +166,7 @@ Allow oxidizer powder and potassium hydroxide to be crafted using a platinum gri
Since the platinum is not consumed it is a catalyst.
--
+Reduce the fun value of bone broth from 10 to 1.
+Every other soup is either 1 or 2, so 10 must be a typo.
+
+--
diff --git a/json/items/comestible/soup.json b/json/items/comestible/soup.json
new file mode 100644
index 0000000..56f1239
--- /dev/null
+++ b/json/items/comestible/soup.json
@@ -0,0 +1,9 @@
+[
+ {
+ "type": "COMESTIBLE",
+ "id": "broth_bone",
+ "copy-from": "broth_bone",
+ "fun:": 1,
+ "//": "A fun value of 10 must be a typo. Other soups/broths are only 1."
+ }
+]