diff options
author | jc_gargma <jc_gargma@iserlohn-fortress.net> | 2024-03-12 00:06:39 -0700 |
---|---|---|
committer | jc_gargma <jc_gargma@iserlohn-fortress.net> | 2024-03-12 00:06:39 -0700 |
commit | 841421bc7bcbfad38533a8ea1d16cc189647b89d (patch) | |
tree | 4d375337e0b6337b8af918e6988a1768ae5a986c /json | |
parent | Add axe ring holster. (diff) | |
download | cataclysm-bn-mod_armor-rebalance-841421bc7bcbfad38533a8ea1d16cc189647b89d.tar.xz |
Merge mbr_vests_return mod.
Diffstat (limited to 'json')
-rw-r--r-- | json/items/armor/ammo_pouch.json | 53 | ||||
-rw-r--r-- | json/items/armor/ballistic_armor.json | 17 | ||||
-rw-r--r-- | json/items/armor/sheath.json | 3 |
3 files changed, 65 insertions, 8 deletions
diff --git a/json/items/armor/ammo_pouch.json b/json/items/armor/ammo_pouch.json index eb19d7d..22f0b65 100644 --- a/json/items/armor/ammo_pouch.json +++ b/json/items/armor/ammo_pouch.json @@ -9,13 +9,6 @@ "max_encumbrance": 5 }, { - "id": "legpouch_large", - "copy-from": "legpouch_large", - "type": "ARMOR", - "name": { "str": "leg magazine pouch", "str_pl": "leg magazine pouch" }, - "extend": { "flags": [ "COMPACT" ] } - }, - { "id": "ammo_satchel", "copy-from": "ammo_satchel", "type": "ARMOR", @@ -25,6 +18,52 @@ "max_encumbrance": 2 }, { + "id": "legpouch_large", + "copy-from": "legpouch_large", + "type": "ARMOR", + "name": { "str": "leg magazine pouch", "str_pl": "leg magazine pouches" }, + "extend": { "flags": [ "COMPACT" ] } + }, + { + "id": "modularvest", + "copy-from": "modularvest", + "type": "ARMOR", + "name": { "str": "MBR vest (empty)", "str_pl": "MBR vests (empty)" }, + "encumbrance": 8 + }, + { + "id": "modularvestceramic", + "copy-from": "modularvestceramic", + "type": "ARMOR", + "name": { "str": "MBR vest (ceramic plates)", "str_pl": "MBR vests (ceramic plates)" }, + "weight": "4308 g", + "encumbrance": 10 + }, + { + "id": "modularvesthard", + "type": "ARMOR", + "copy-from": "modularvesthard", + "name": { "str": "MBR vest (hard plates)", "str_pl": "MBR vests (hard plates)" }, + "weight": "14860 g", + "encumbrance": 20 + }, + { + "id": "modularveststeel", + "copy-from": "modularveststeel", + "type": "ARMOR", + "name": { "str": "MBR vest (steel plating)", "str_pl": "MBR vests (steel plating)" }, + "weight": "10860 g", + "price": "399 USD", + "encumbrance": 20 + }, + { + "id": "modularvestsuper", + "copy-from": "modularvestsuper", + "type": "ARMOR", + "name": { "str": "MBR vest (superalloy)", "str_pl": "MBR vests (superalloy)" }, + "encumbrance": 15 + }, + { "id": "tacvest", "copy-from": "tacvest", "type": "ARMOR", diff --git a/json/items/armor/ballistic_armor.json b/json/items/armor/ballistic_armor.json new file mode 100644 index 0000000..7a6479a --- /dev/null +++ b/json/items/armor/ballistic_armor.json @@ -0,0 +1,17 @@ +[ + { + "id": "dragonskin", + "copy-from": "dragonskin", + "type": "ARMOR", + "name": { "str": "dragon skin vest" }, + "encumbrance": 10, + "material_thickness": 6 + }, + { + "id": "dragonskinempty", + "copy-from": "dragonskinempty", + "type": "ARMOR", + "name": { "str": "dragon skin vest (empty)", "str_pl": "dragon skin vests (empty)" }, + "description": "A lamellar Kevlar vest, there are intricately cut voids usually filled with stitched in ceramic disks, you could repair the stitching if needed." + } +] diff --git a/json/items/armor/sheath.json b/json/items/armor/sheath.json index 3b22e39..802b499 100644 --- a/json/items/armor/sheath.json +++ b/json/items/armor/sheath.json @@ -6,6 +6,7 @@ "name": { "str": "axe ring holster" }, "rigid": false, "encumbrance": 0, - "max_encumbrance": 4 + "max_encumbrance": 4, + "//": "Reduce base encumbrance, but increase max_encumbrance." } ] |