diff options
author | jc_gargma <jc_gargma@iserlohn-fortress.net> | 2024-03-13 03:08:01 -0700 |
---|---|---|
committer | jc_gargma <jc_gargma@iserlohn-fortress.net> | 2024-03-13 03:08:01 -0700 |
commit | 88f78c09dfc94b3c0da5ca23b573fb9998a2a3ae (patch) | |
tree | 80df77633236a08a288e070fd1f937bafafd27ac /json/items/armor | |
parent | Increase encumbrance on deep concealment holster, and move it to leg_either. (diff) | |
download | cataclysm-bn-mod_armor-rebalance-88f78c09dfc94b3c0da5ca23b573fb9998a2a3ae.tar.xz |
Fully overwrite the deep concealment holster to prevent it breaking.
Also reduce the per-knife storage of the throwing knife sheath to 250ml.
Diffstat (limited to 'json/items/armor')
-rw-r--r-- | json/items/armor/holster.json | 20 | ||||
-rw-r--r-- | json/items/armor/sheath.json | 2 |
2 files changed, 19 insertions, 3 deletions
diff --git a/json/items/armor/holster.json b/json/items/armor/holster.json index b97773b..bb28056 100644 --- a/json/items/armor/holster.json +++ b/json/items/armor/holster.json @@ -41,12 +41,28 @@ }, { "id": "bholster", - "copy-from": "bholster", + "copy-from": "holster", "type": "ARMOR", "name": { "str": "deep concealment holster" }, + "description": "An elastic band with numerous provisions for concealing a small pistol close to the body. It is awkward to use without practice. Activate to holster/draw a gun.", + "weight": "90 g", + "volume": "250 ml", + "price": "30 USD", + "price_postapoc": "5 USD", + "material": [ "nylon" ], "covers": [ "leg_either" ], "encumbrance": 1, - "max_encumbrance": 3 + "max_encumbrance": 3, + "use_action": { + "type": "holster", + "min_volume": "100 ml", + "max_volume": "500 ml", + "max_weight": "1500 g", + "draw_cost": 210, + "skills": [ "pistol" ] + }, + "valid_mods": [ "resized_large" ], + "flags": [ "SKINTIGHT", "COMPACT", "WATER_FRIENDLY" ] }, { "id": "shoulder_holster", diff --git a/json/items/armor/sheath.json b/json/items/armor/sheath.json index 4143cc2..67e0c7f 100644 --- a/json/items/armor/sheath.json +++ b/json/items/armor/sheath.json @@ -37,7 +37,7 @@ "type": "holster", "holster_prompt": "Sheath knife", "holster_msg": "You sheath your %s", - "max_volume": "500 ml", + "max_volume": "250 ml", "draw_cost": 90, "multi": 6, "flags": [ "SHEATH_KNIFE" ] |