From 0eac9a5f5f89a5da6725da4fd4164ba678d085b2 Mon Sep 17 00:00:00 2001 From: Jarewill <98614648+Jarewill@users.noreply.github.com> Date: Mon, 28 Mar 2022 17:37:55 +0200 Subject: [PATCH 1/2] Update cestus --- data/json/items/melee/unarmed_weapons.json | 23 +++++++++++++++++++++- 1 file changed, 22 insertions(+), 1 deletion(-) diff --git a/data/json/items/melee/unarmed_weapons.json b/data/json/items/melee/unarmed_weapons.json index 5a405bc987348..b279d26d1c187 100644 --- a/data/json/items/melee/unarmed_weapons.json +++ b/data/json/items/melee/unarmed_weapons.json @@ -12,13 +12,34 @@ "bashing": 2, "price_postapoc": 250, "flags": [ "DURABLE_MELEE", "NONCONDUCTIVE" ], - "material_thickness": 1, + "material_thickness": 2, "armor": [ { + "material": [ + { "type": "leather", "covered_by_mat": 100, "thickness": 2.0 }, + { "type": "steel", "covered_by_mat": 75, "thickness": 1.0 } + ], "encumbrance": 5, "coverage": 100, "covers": [ "hand_l", "hand_r" ], + "specifically_covers": [ "hand_wrist_l", "hand_wrist_r", "hand_palm_l", "hand_palm_r", "hand_back_l", "hand_back_r" ] + }, + { + "material": [ + { "type": "leather", "covered_by_mat": 100, "thickness": 2.0 }, + { "type": "steel", "covered_by_mat": 75, "thickness": 1.0 } + ], + "encumbrance": 0, + "coverage": 60, + "covers": [ "hand_l", "hand_r" ], "specifically_covers": [ "hand_fingers_l", "hand_fingers_r" ] + }, + { + "material": [ { "type": "leather", "covered_by_mat": 100, "thickness": 2.0 } ], + "encumbrance": 2, + "coverage": 60, + "covers": [ "arm_l", "arm_r" ], + "specifically_covers": [ "arm_lower_l", "arm_lower_r" ] } ] }, From b4f0744f6d3ef069697ccab4c9d4bc306b9b8800 Mon Sep 17 00:00:00 2001 From: Jarewill <98614648+Jarewill@users.noreply.github.com> Date: Wed, 30 Mar 2022 22:45:30 +0200 Subject: [PATCH 2/2] Lower the thickness It was definitely too thick. --- data/json/items/melee/unarmed_weapons.json | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/data/json/items/melee/unarmed_weapons.json b/data/json/items/melee/unarmed_weapons.json index b279d26d1c187..80e6694d9cb8e 100644 --- a/data/json/items/melee/unarmed_weapons.json +++ b/data/json/items/melee/unarmed_weapons.json @@ -12,12 +12,12 @@ "bashing": 2, "price_postapoc": 250, "flags": [ "DURABLE_MELEE", "NONCONDUCTIVE" ], - "material_thickness": 2, + "material_thickness": 1, "armor": [ { "material": [ - { "type": "leather", "covered_by_mat": 100, "thickness": 2.0 }, - { "type": "steel", "covered_by_mat": 75, "thickness": 1.0 } + { "type": "leather", "covered_by_mat": 100, "thickness": 1.0 }, + { "type": "steel", "covered_by_mat": 75, "thickness": 0.5 } ], "encumbrance": 5, "coverage": 100, @@ -26,16 +26,16 @@ }, { "material": [ - { "type": "leather", "covered_by_mat": 100, "thickness": 2.0 }, - { "type": "steel", "covered_by_mat": 75, "thickness": 1.0 } + { "type": "leather", "covered_by_mat": 100, "thickness": 1.0 }, + { "type": "steel", "covered_by_mat": 75, "thickness": 0.5 } ], "encumbrance": 0, - "coverage": 60, + "coverage": 50, "covers": [ "hand_l", "hand_r" ], "specifically_covers": [ "hand_fingers_l", "hand_fingers_r" ] }, { - "material": [ { "type": "leather", "covered_by_mat": 100, "thickness": 2.0 } ], + "material": [ { "type": "leather", "covered_by_mat": 100, "thickness": 1.0 } ], "encumbrance": 2, "coverage": 60, "covers": [ "arm_l", "arm_r" ],