From 1b9c5a9c7a00341fd668589c9dd1709dfe867f02 Mon Sep 17 00:00:00 2001 From: jc_gargma Date: Mon, 11 Mar 2024 22:35:41 -0700 Subject: Add polo shirt, webbing belt, and police belt. --- json/items/armor/belts.json | 22 ++++++++++++++++++++++ json/items/armor/coats.json | 10 ++++++++++ json/items/armor/torso_clothes.json | 11 +++++++++++ 3 files changed, 43 insertions(+) create mode 100644 json/items/armor/belts.json diff --git a/json/items/armor/belts.json b/json/items/armor/belts.json new file mode 100644 index 0000000..44deab0 --- /dev/null +++ b/json/items/armor/belts.json @@ -0,0 +1,22 @@ +[ + { + "id": "police_belt", + "copy-from": "police_belt", + "type": "ARMOR", + "name": { "str": "police duty belt" }, + "rigid": false, + "encumbrance": 1, + "max_encumbrance": 6, + "//": "Reduce base encumbrance, with the old value becoming max_encumbrance when items are stored." + }, + { + "id": "webbing_belt", + "copy-from": "webbing_belt", + "type": "ARMOR", + "name": { "str": "webbing belt" }, + "rigid": false, + "encumbrance": 1, + "max_encumbrance": 3, + "//": "Slightly increase encumbrance when an item is stored." + }, +] diff --git a/json/items/armor/coats.json b/json/items/armor/coats.json index 9b4bcd6..5b022bb 100644 --- a/json/items/armor/coats.json +++ b/json/items/armor/coats.json @@ -21,6 +21,16 @@ ], "storage": "1600 ml" }, + { + "id": "jacket_light", + "copy-from": "jacket_light", + "type": "ARMOR", + "name": { "str": "light jacket" }, + "armor_portion_data": [ + { "covers": [ "torso" ], "coverage": 100, "encumbrance": [ 6, 8 ] }, + { "covers": [ "arms" ], "coverage": 100, "encumbrance": [ 6, 6 ] } + ] + }, { "id": "trenchcoat", "copy-from": "trenchcoat", diff --git a/json/items/armor/torso_clothes.json b/json/items/armor/torso_clothes.json index c3daa36..9210461 100644 --- a/json/items/armor/torso_clothes.json +++ b/json/items/armor/torso_clothes.json @@ -8,5 +8,16 @@ { "covers": [ "torso" ], "coverage": 90, "encumbrance": [ 4, 5 ] }, { "covers": [ "arms" ], "coverage": 90, "encumbrance": [ 4, 4 ] } ] + }, + { + "id": "polo_shirt", + "copy-from": "polo_shirt", + "type": "ARMOR", + "name": { "str": "polo shirt" }, + "armor_portion_data": [ + { "covers": [ "torso" ], "coverage": 90, "encumbrance": [ 5, 7 ] }, + { "covers": [ "arms" ], "coverage": 30, "encumbrance": [ 5, 5 ] } + ], + "//": "Add arms coverage." } ] -- cgit v1.2.1