diff options
author | jc_gargma <jc_gargma@iserlohn-fortress.net> | 2024-03-12 21:07:37 -0700 |
---|---|---|
committer | jc_gargma <jc_gargma@iserlohn-fortress.net> | 2024-03-12 21:07:37 -0700 |
commit | 8654e76b2831112f2b24e8f85b2bd58ea7e01506 (patch) | |
tree | 934e6471136df2a6b5042bb6cda3a2b55799a98e /json/recipes/armor | |
parent | Fix lab coat and army winter coat storage. (diff) | |
download | cataclysm-bn-mod_armor-rebalance-8654e76b2831112f2b24e8f85b2bd58ea7e01506.tar.xz |
Add and fix many vanilla items.
Also port the garter belt and garter knife sheath from dda.
Diffstat (limited to 'json/recipes/armor')
-rw-r--r-- | json/recipes/armor/storage.json | 35 | ||||
-rw-r--r-- | json/recipes/armor/torso.json | 14 |
2 files changed, 49 insertions, 0 deletions
diff --git a/json/recipes/armor/storage.json b/json/recipes/armor/storage.json new file mode 100644 index 0000000..e645779 --- /dev/null +++ b/json/recipes/armor/storage.json @@ -0,0 +1,35 @@ +[ + { + "result": "armrig", + "type": "recipe", + "category": "CC_ARMOR", + "subcategory": "CSC_ARMOR_STORAGE", + "skill_used": "tailor", + "difficulty": 3, + "time": "1 h 16 m", + "autolearn": true, + "qualities": [ { "id": "SEW", "level": 1 } ], + "components": [ + [ [ "fabric_standard", 6, "LIST" ] ], + [ [ "chestpouch", 2 ], [ "fabric_standard", 8, "LIST" ] ], + [ [ "filament", 8, "LIST" ] ] + ] + }, + { + "result": "gartersheath1", + "type": "recipe", + "category": "CC_ARMOR", + "subcategory": "CSC_ARMOR_STORAGE", + "skill_used": "tailor", + "difficulty": 3, + "skills_required": [ "melee", 1 ], + "time": "1 h", + "autolearn": true, + "qualities": [ { "id": "SEW", "level": 1 } ], + "using": [ [ "plastic_molding", 1 ] ], + "components": [ + [ [ "nylon", 6 ] ], + [ [ "filament", 10, "LIST" ] ] + ] + } +] diff --git a/json/recipes/armor/torso.json b/json/recipes/armor/torso.json new file mode 100644 index 0000000..abe3759 --- /dev/null +++ b/json/recipes/armor/torso.json @@ -0,0 +1,14 @@ +[ + { + "result": "garter_belt", + "type": "recipe", + "category": "CC_ARMOR", + "subcategory": "CSC_ARMOR_TORSO", + "skill_used": "tailor", + "difficulty": 1, + "time": "40 m", + "autolearn": true, + "using": [ [ "sewing_standard", 15 ] ], + "components": [ [ [ "nylon", 2 ] ] ] + } +] |