summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjc_gargma <jc_gargma@iserlohn-fortress.net>2020-05-26 02:55:20 -0700
committerjc_gargma <jc_gargma@iserlohn-fortress.net>2020-05-26 02:55:20 -0700
commit6e3a705800204ef61a7a6a9229beee8d4346bc25 (patch)
tree660bdaeef8b2b6855ff1fbf4e2379af1c016ab6b
parentRename to recipe-fixes (diff)
downloadcataclysm-bn-mod_recipe-fixes-6e3a705800204ef61a7a6a9229beee8d4346bc25.tar.xz
Anesthetic to 500ml batches instead of 540ml
-rw-r--r--Readme.txt1
-rw-r--r--json/items/chemicals_and_resources.json19
-rw-r--r--json/recipes/recipe_medsandchemicals.json19
3 files changed, 39 insertions, 0 deletions
diff --git a/Readme.txt b/Readme.txt
index e2cbc6d..0e26733 100644
--- a/Readme.txt
+++ b/Readme.txt
@@ -1,2 +1,3 @@
Cheeseburger can now be made with brioche.
Hamburger can noe be made with lettuce.
+Change anesthetic to 500 ml batches instead of 540 ml.
diff --git a/json/items/chemicals_and_resources.json b/json/items/chemicals_and_resources.json
new file mode 100644
index 0000000..b222c95
--- /dev/null
+++ b/json/items/chemicals_and_resources.json
@@ -0,0 +1,19 @@
+[
+ {
+ "id": "anesthetic",
+ "type": "AMMO",
+ "name": { "str": "anesthetic" },
+ "category": "chems",
+ "description": "A variety of powerful hypnotic, analgesic, and stimulative drugs. It's intended for use in specialized medical equipment, and can't be administered manually. You can reload an anesthesia kit with it.",
+ "weight": "700 mg",
+ "volume": "500 ml",
+ "price": 8333,
+ "ammo_type": "anesthetic",
+ "count": 500,
+ "phase": "liquid",
+ "container": "jar_3l_glass",
+ "symbol": "!",
+ "color": "cyan",
+ "looks_like": "ether"
+ }
+]
diff --git a/json/recipes/recipe_medsandchemicals.json b/json/recipes/recipe_medsandchemicals.json
new file mode 100644
index 0000000..102eed4
--- /dev/null
+++ b/json/recipes/recipe_medsandchemicals.json
@@ -0,0 +1,19 @@
+[
+ {
+ "result": "anesthetic",
+ "type": "recipe",
+ "category": "CC_OTHER",
+ "subcategory": "CC_OTHER_MEDICAL",
+ "skill_used": "firstaid",
+ "difficulty": 3,
+ "batch_time_factors": [ 99, 1 ],
+ "//": "This difficulty assumes that anaesthesia administration will be handled by the autodoc or the person using the kit. The included amount of ether is an estimate, based on average body size.",
+ "time": "2 m 30 s",
+ "book_learn": [ [ "textbook_firstaid", 6 ], [ "emergency_book", 5 ] ],
+ "qualities": [ { "id": "CONTAIN", "level": 1 } ],
+ "components": [
+ [ [ "ether", 500 ] ],
+ [ [ "heroin", 1 ], [ "oxycodone", 2 ], [ "tramadol", 3 ], [ "codeine", 4 ], [ "poppy_pain", 4 ] ]
+ ]
+ }
+]