diff options
author | jc_gargma <jc_gargma@iserlohn-fortress.net> | 2024-03-11 21:53:20 -0700 |
---|---|---|
committer | jc_gargma <jc_gargma@iserlohn-fortress.net> | 2024-03-11 21:53:20 -0700 |
commit | af2a3c6863250f92f426dae9cee7919d84fce991 (patch) | |
tree | 066a23dd99b886d14c852af727690c48a6e54c6c /json/items/armor/storage.json | |
download | cataclysm-bn-mod_armor-rebalance-af2a3c6863250f92f426dae9cee7919d84fce991.tar.xz |
Initial commit.
Diffstat (limited to 'json/items/armor/storage.json')
-rw-r--r-- | json/items/armor/storage.json | 121 |
1 files changed, 121 insertions, 0 deletions
diff --git a/json/items/armor/storage.json b/json/items/armor/storage.json new file mode 100644 index 0000000..938b644 --- /dev/null +++ b/json/items/armor/storage.json @@ -0,0 +1,121 @@ +[ + { + "id": "mbag", + "copy-from": "mbag", + "type": "ARMOR", + "name": { "str": "messenger bag" }, + "encumbrance": 4, + "max_encumbrance": 8, + "storage": "15 L", + "flags": [ "BELTED", "WATER_FRIENDLY" ] + }, + { + "id": "backpack", + "copy-from": "backpack", + "type": "ARMOR", + "name": { "str": "backpack" }, + "encumbrance": 4, + "max_encumbrance": 19, + "storage": "35500 ml" + }, + { + "id": "backpack_leather", + "copy-from": "backpack_leather", + "type": "ARMOR", + "name": { "str": "leather backpack" }, + "encumbrance": 2, + "max_encumbrance": 25, + "storage": "35500 ml" + }, + { + "id": "duffelbag", + "copy-from": "duffelbag", + "type": "ARMOR", + "name": { "str": "duffel bag" }, + "encumbrance": 5, + "max_encumbrance": 15, + "storage": "39 L" + }, + { + "id": "molle_pack", + "copy-from": "molle_pack", + "type": "ARMOR", + "name": { "str": "MOLLE pack" }, + "weight": "1450 g", + "volume": "6 L", + "encumbrance": 5, + "max_encumbrance": 11, + "storage": "38 L" + }, + { + "id": "backpack_tactical_large", + "copy-from": "backpack_tactical_large", + "type": "ARMOR", + "name": { "str": "large tactical backpack" }, + "encumbrance": 10, + "max_encumbrance": 55, + "storage": "81 L" + }, + { + "id": "legrig", + "copy-from": "legrig", + "type": "ARMOR", + "name": { "str": "pair of drop leg pouches", "str_pl": "pairs of drop leg pouches" }, + "storage": "5 L", + "encumbrance": 2, + "max_encumbrance": 3, + "flags": [ "WATER_FRIENDLY", "BELTED" ], + "//": "Changed to strapped layer since knee pads no longer hard conflict." + }, + { + "id": "daypack", + "copy-from": "daypack", + "type": "ARMOR", + "name": { "str": "daypack" }, + "storage": "39 L", + "encumbrance": 2, + "max_encumbrance": 18 + }, + { + "id": "runner_bag", + "copy-from": "runner_bag", + "type": "ARMOR", + "name": { "str": "runner pack" }, + "weight": "360 g", + "storage": "7 L", + "encumbrance": 1, + "max_encumbrance": 2 + }, + { + "id": "armrig", + "type": "ARMOR", + "name": { "str": "armband pouch", "str_pl": "armband pouches" }, + "description": "A small pouch that can be worn on the upper arm using buckled straps. This is a favoured item among sports & camping enthusiasts.", + "weight": "205 g", + "volume": "550 ml", + "price": "30 USD", + "price_postapoc": "250 cent", + "material": [ "cotton", "plastic" ], + "symbol": "[", + "looks_like": "armguard_soft", + "color": "dark_gray", + "storage": "500 ml", + "covers": [ "arm_either" ], + "coverage": 15, + "encumbrance": 0, + "max_encumbrance": 1, + "material_thickness": 1, + "flags": [ "VARSIZE", "WATER_FRIENDLY", "BELTED" ], + "//": "Psuedo-ported from dda." + }, + { + "id": "vest", + "copy-from": "vest", + "type": "ARMOR", + "name": { "str": "utility vest" }, + "encumbrance": 2, + "max_encumbrance": 5, + "extend": { "flags": [ "BELTED" ] }, + "//": "Changed to strapped layer because this is not a shirt." + } +] |