From 56969e25411babf9505065f1b42d50c72efa507d Mon Sep 17 00:00:00 2001 From: Robustin Date: Thu, 30 Nov 2017 20:16:31 -0500 Subject: [PATCH 1/2] Moderate Damage Examination (#33008) Ok so the last one only worked on carbons who weren't humans, woops. See: #32707 :cl: Robustin tweak: Damage examinations now include a "moderate" classification. Before minor was <30 and severe was anything 30 or above. Now minor is <25, moderate is 25 to <50, and severe is 50+. /:cl: --- code/modules/mob/living/carbon/human/examine.dm | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/code/modules/mob/living/carbon/human/examine.dm b/code/modules/mob/living/carbon/human/examine.dm index 6f3dca3ed76..2dc4236652b 100644 --- a/code/modules/mob/living/carbon/human/examine.dm +++ b/code/modules/mob/living/carbon/human/examine.dm @@ -188,24 +188,30 @@ msg += "[t_He] [p_do()]n't seem all there.\n" if(temp) - if(temp < 30) + if(temp < 25) msg += "[t_He] [t_has] minor bruising.\n" + else if(temp < 50) + msg += "[t_He] [t_has] moderate bruising!\n" else msg += "[t_He] [t_has] severe bruising!\n" temp = getFireLoss() if(temp) - if(temp < 30) + if(temp < 25) msg += "[t_He] [t_has] minor burns.\n" + else if (temp < 50) + msg += "[t_He] [t_has] moderate burns!\n" else msg += "[t_He] [t_has] severe burns!\n" temp = getCloneLoss() if(temp) - if(temp < 30) + if(temp < 25) msg += "[t_He] [t_has] minor cellular damage.\n" + else if(temp < 50) + msg += "[t_He] [t_has] moderate cellular damage!\n" else - msg += "[t_He] [t_has] severe cellular damage.\n" + msg += "[t_He] [t_has] severe cellular damage!\n" if(fire_stacks > 0) From 382516674f538b3869f829e0f2e046ce28c7f165 Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Thu, 30 Nov 2017 19:16:40 -0600 Subject: [PATCH 2/2] Moderate Damage Examination