Skip to content

Commit

Permalink
Merge pull request #4172 from Citadel-Station-13/upstream-merge-33008
Browse files Browse the repository at this point in the history
[MIRROR] Moderate Damage Examination
  • Loading branch information
deathride58 authored Dec 1, 2017
2 parents 1945130 + 3825166 commit 58ad202
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions code/modules/mob/living/carbon/human/examine.dm
Original file line number Diff line number Diff line change
Expand Up @@ -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] <b>moderate</b> bruising!\n"
else
msg += "<B>[t_He] [t_has] severe bruising!</B>\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] <b>moderate</b> burns!\n"
else
msg += "<B>[t_He] [t_has] severe burns!</B>\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] <b>moderate</b> cellular damage!\n"
else
msg += "<B>[t_He] [t_has] severe cellular damage.</B>\n"
msg += "<b>[t_He] [t_has] severe cellular damage!</b>\n"


if(fire_stacks > 0)
Expand Down

0 comments on commit 58ad202

Please sign in to comment.