summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjc_gargma <jc_gargma@iserlohn-fortress.net>2022-09-09 17:36:48 -0700
committerjc_gargma <jc_gargma@iserlohn-fortress.net>2022-09-09 17:36:48 -0700
commitb5b122f6e57d89bc48811cb00011b5d4275ef093 (patch)
tree9ff6fa02911b43218566dbade8ff79a239f447ee
parentTypos. (diff)
downloadcataclysm-bn-mod_recipe-fixes-b5b122f6e57d89bc48811cb00011b5d4275ef093.tar.xz
Allow crafting leg ammo pouches with rags/leather.
-rw-r--r--Readme.txt4
-rw-r--r--json/recipes/armor/storage.json19
2 files changed, 23 insertions, 0 deletions
diff --git a/Readme.txt b/Readme.txt
index 9352519..2f5e15c 100644
--- a/Readme.txt
+++ b/Readme.txt
@@ -116,3 +116,7 @@ Add copper to reloaded and black powder recipes for various ammunitions:
Scrambled Eggs and Deluxe Scrambled Eggs:
From powdered eggs variants now no longer allows the use of non-powdered eggs.
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.
diff --git a/json/recipes/armor/storage.json b/json/recipes/armor/storage.json
new file mode 100644
index 0000000..b5a9399
--- /dev/null
+++ b/json/recipes/armor/storage.json
@@ -0,0 +1,19 @@
+[
+ {
+ "result": "legpouch_large",
+ "type": "recipe",
+ "category": "CC_ARMOR",
+ "subcategory": "CSC_ARMOR_STORAGE",
+ "skill_used": "tailor",
+ "difficulty": 3,
+ "skills_required": [ "gun", 1 ],
+ "time": "1 h 16 m",
+ "autolearn": true,
+ "qualities": [ { "id": "SEW", "level": 1 } ],
+ "components": [
+ [ [ "leather", 6 ], [ "rag", 6 ] ],
+ [ [ "chestpouch", 2 ], [ "leather", 8 ], [ "rag", 8 ] ],
+ [ [ "filament", 8, "LIST" ] ]
+ ]
+ }
+]