From 3d1560ac6e776952707fe27c66a05cb151ed28f6 Mon Sep 17 00:00:00 2001 From: SkyratBot <59378654+SkyratBot@users.noreply.github.com> Date: Fri, 8 Dec 2023 11:10:06 +0100 Subject: [PATCH] [MIRROR] Adds wound armor to heretic robes and gives heretic blades knife level wounding [MDB IGNORE] (#25497) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Adds wound armor to heretic robes and gives heretic blades knife level wounding (#80146) ## About The Pull Request Adds 20 points of wound armor to ominous robes Adds 10 points to void robes Adds 5 wound bonus(15 bare) to heretic blades. ## Why It's Good For The Game Literally every other armor piece has these, I don’t know why heretic robes were included and honestly it seems like an oversight Heretic blades are made from knives, knives have 5 wound bonus, it makes no sense for heretic blades to be worse than 20 force knives. ## Changelog :cl: balance: heretic robes now have wound armor balance: heretic blades now have knife-level wound bonuses /:cl: * Adds wound armor to heretic robes and gives heretic blades knife level wounding --------- Co-authored-by: KittyNoodle <78111117+KittyNoodle@users.noreply.github.com> --- code/modules/antagonists/heretic/items/heretic_armor.dm | 3 +++ code/modules/antagonists/heretic/items/heretic_blades.dm | 2 ++ 2 files changed, 5 insertions(+) diff --git a/code/modules/antagonists/heretic/items/heretic_armor.dm b/code/modules/antagonists/heretic/items/heretic_armor.dm index 502c52c17fb..e1f79612406 100644 --- a/code/modules/antagonists/heretic/items/heretic_armor.dm +++ b/code/modules/antagonists/heretic/items/heretic_armor.dm @@ -34,6 +34,7 @@ bio = 20 fire = 20 acid = 20 + wound = 20 /obj/item/clothing/suit/hooded/cultrobes/eldritch/examine(mob/user) . = ..() @@ -64,6 +65,7 @@ laser = 30 energy = 30 bomb = 15 + wound = 10 /obj/item/clothing/head/hooded/cult_hoodie/void/Initialize(mapload) . = ..() @@ -89,6 +91,7 @@ laser = 30 energy = 30 bomb = 15 + wound = 10 /obj/item/clothing/suit/hooded/cultrobes/void/Initialize(mapload) . = ..() diff --git a/code/modules/antagonists/heretic/items/heretic_blades.dm b/code/modules/antagonists/heretic/items/heretic_blades.dm index 19470e29699..8eb08a76427 100644 --- a/code/modules/antagonists/heretic/items/heretic_blades.dm +++ b/code/modules/antagonists/heretic/items/heretic_blades.dm @@ -14,6 +14,8 @@ w_class = WEIGHT_CLASS_NORMAL force = 20 throwforce = 10 + wound_bonus = 5 + bare_wound_bonus = 15 toolspeed = 0.375 demolition_mod = 0.8 hitsound = 'sound/weapons/bladeslice.ogg'