From 2fc1e5c8e534b9534a98592738a78f8bfe30c22a Mon Sep 17 00:00:00 2001 From: Robustin Date: Tue, 14 Nov 2017 14:47:55 -0500 Subject: [PATCH] More nuanced damage examination (#32707) * More nuanced damage examinations * Tweaking examination values * Redundancy Removal --- code/modules/mob/living/carbon/examine.dm | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/code/modules/mob/living/carbon/examine.dm b/code/modules/mob/living/carbon/examine.dm index 37a2ee13ae..53b087d768 100644 --- a/code/modules/mob/living/carbon/examine.dm +++ b/code/modules/mob/living/carbon/examine.dm @@ -44,24 +44,30 @@ msg += "" var/temp = getBruteLoss() 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(getCloneLoss() < 30) + if(temp < 25) msg += "[t_He] [t_is] slightly deformed.\n" + else if (temp < 50) + msg += "[t_He] [t_is] moderately deformed!\n" else - msg += "[t_He] [t_is] severely deformed.\n" + msg += "[t_He] [t_is] severely deformed!\n" if(getBrainLoss() > 60) msg += "[t_He] seem[p_s()] to be clumsy and unable to think.\n"