summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjc_gargma <jc_gargma@iserlohn-fortress.net>2023-11-12 11:55:14 -0800
committerjc_gargma <jc_gargma@iserlohn-fortress.net>2023-11-12 11:55:14 -0800
commitbd2b3362fa58fa407d9772e0a0bc14e8f7cd0b19 (patch)
treeedf9196734ca5d6a9d904e870195c7634c941df1
parentConvert leg ammo pouch recipe to use requirements. (diff)
downloadcataclysm-bn-mod_recipe-fixes-bd2b3362fa58fa407d9772e0a0bc14e8f7cd0b19.tar.xz
Allow oxidizer powder and potassium hydroxide to be crafted with a platinum grille.
-rw-r--r--Readme.txt6
-rw-r--r--json/recipes/chem/chemicals.json39
2 files changed, 45 insertions, 0 deletions
diff --git a/Readme.txt b/Readme.txt
index 453428c..a772835 100644
--- a/Readme.txt
+++ b/Readme.txt
@@ -157,3 +157,9 @@ Two 143g sugar beets make 71 portions. Two 148g portions of berries should too.
--
Fruit Juice, Orange Juice, Cranberry Juice, Apple Cider now sorted under Drinks.
For some reason they were sorted under Veggy.
+
+--
+Allow oxidizer powder and potassium hydroxide to be crafted using a platinum grille.
+Since the platinum is not consumed it is a catalyst.
+
+--
diff --git a/json/recipes/chem/chemicals.json b/json/recipes/chem/chemicals.json
new file mode 100644
index 0000000..5c2859d
--- /dev/null
+++ b/json/recipes/chem/chemicals.json
@@ -0,0 +1,39 @@
+[
+ {
+ "type": "recipe",
+ "result": "oxy_powder",
+ "byproducts": [ [ "salt_water", 2 ] ],
+ "category": "CC_CHEM",
+ "subcategory": "CSC_CHEM_CHEMICALS",
+ "skill_used": "cooking",
+ "skills_required": [ "electronics", 2 ],
+ "difficulty": 7,
+ "time": "45 m",
+ "batch_time_factors": [ 80, 5 ],
+ "//": "abstracting using chloralkali process (hot solution, unpartitioned cell) to produce sodium chlorate, then perchlorate by anodic oxidation on platinum, then ammonia perchlorate by double decomposition from sodium perchlorate and ammonium chloride; while we can't directly use bleach here but we do end up recovering some brine",
+ "book_learn": [ [ "adv_chemistry", 4 ], [ "textbook_chemistry", 4 ], [ "recipe_labchem", 4 ] ],
+ "qualities": [ { "id": "CHEM", "level": 2 }, { "id": "BOIL", "level": 1 } ],
+ "tools": [ [ [ "electrolysis_kit", 750 ] ], [ [ "surface_heat", 25, "LIST" ] ], [ [ "platinum_small", -1 ], [ "platinum_grille", -1 ] ] ],
+ "components": [ [ [ "salt_water", 4 ], [ "saline", 20 ] ], [ [ "ammonia", 1 ] ], [ [ "chem_muriatic_acid", 1 ] ] ]
+ },
+ {
+ "type": "recipe",
+ "result": "chem_potassium_hydroxide",
+ "byproducts": [ [ "water" ] ],
+ "category": "CC_CHEM",
+ "subcategory": "CSC_CHEM_CHEMICALS",
+ "skill_used": "cooking",
+ "difficulty": 5,
+ "charges": 680,
+ "time": "45 m",
+ "book_learn": [ [ "textbook_chemistry", 4 ], [ "adv_chemistry", 5 ] ],
+ "tools": [
+ [ [ "electrolysis_kit", 100 ] ],
+ [ [ "chemistry_set_basic", -1 ], [ "chemistry_set", -1 ] ],
+ [ [ "platinum_small", -1 ], [ "platinum_grille", -1 ] ],
+ [ [ "silver_small", -1 ] ],
+ [ [ "salt", -1 ] ]
+ ],
+ "components": [ [ [ "water_clean", 3 ] ], [ [ "chem_potassium_chloride", 25 ] ] ]
+ }
+]