From 9e74428c71493efc086c34a8e8f70f4a3927d2dd Mon Sep 17 00:00:00 2001 From: Slim-Pickems <144301516+Slim-Pickems@users.noreply.github.com> Date: Tue, 21 Jan 2025 13:50:44 -0600 Subject: [PATCH] Combat Medic Hardsuit Changes (#4055) ## About The Pull Request Makes a small buff on the bullet protection to the Combat Medic hardsuit for it can actually be better than the regular medic hardsuit. ## Why It's Good For The Game Make buying the combat medic hardsuit from the black market worth the cash it costs, but not a better option than some of the more dedicated combat suits. ## Changelog :cl: balance: moved combat medic hardsuit bullet protection from 10 to 20 /:cl: --- code/modules/clothing/spacesuits/miscellaneous.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/clothing/spacesuits/miscellaneous.dm b/code/modules/clothing/spacesuits/miscellaneous.dm index f739afcf8219..07f0b571d1e7 100644 --- a/code/modules/clothing/spacesuits/miscellaneous.dm +++ b/code/modules/clothing/spacesuits/miscellaneous.dm @@ -500,7 +500,7 @@ Contains: desc = "The integrated helmet of the combat medic hardsuit, this has a bright, glowing facemask." icon_state = "hardsuit0-combatmedic" item_state = "hardsuit0-combatmedic" - armor = list("melee" = 35, "bullet" = 10, "laser" = 20, "energy" = 30, "bomb" = 5, "bio" = 100, "rad" = 50, "fire" = 65, "acid" = 75) + armor = list("melee" = 35, "bullet" = 20, "laser" = 20, "energy" = 30, "bomb" = 5, "bio" = 100, "rad" = 50, "fire" = 65, "acid" = 75) hardsuit_type = "combatmedic" /obj/item/clothing/suit/space/hardsuit/combatmedic @@ -509,7 +509,7 @@ Contains: icon_state = "combatmedic" item_state = "combatmedic" helmettype = /obj/item/clothing/head/helmet/space/hardsuit/combatmedic - armor = list("melee" = 35, "bullet" = 10, "laser" = 20, "energy" = 30, "bomb" = 5, "bio" = 100, "rad" = 50, "fire" = 65, "acid" = 75) + armor = list("melee" = 35, "bullet" = 20, "laser" = 20, "energy" = 30, "bomb" = 5, "bio" = 100, "rad" = 50, "fire" = 65, "acid" = 75) allowed = list(/obj/item/gun, /obj/item/melee/baton, /obj/item/circular_saw, /obj/item/tank/internals, /obj/item/storage/box/pillbottles,\ /obj/item/storage/firstaid, /obj/item/stack/medical/gauze, /obj/item/stack/medical/suture, /obj/item/stack/medical/mesh, /obj/item/storage/bag/chemistry)