mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-01-14 19:03:21 +00:00
61 lines
1.8 KiB
Plaintext
61 lines
1.8 KiB
Plaintext
/mob/living/carbon/examine(mob/user)
|
|
var/msg = "<span class='info'>*---------*\nThis is \icon[src] \a <EM>[src]</EM>!\n"
|
|
|
|
if (handcuffed)
|
|
msg += "It is \icon[src.handcuffed] handcuffed!\n"
|
|
if (head)
|
|
msg += "It has \icon[src.head] \a [src.head] on its head. \n"
|
|
if (wear_mask)
|
|
msg += "It has \icon[src.wear_mask] \a [src.wear_mask] on its face.\n"
|
|
if (l_hand)
|
|
msg += "It has \icon[src.l_hand] \a [src.l_hand] in its left hand.\n"
|
|
if (r_hand)
|
|
msg += "It has \icon[src.r_hand] \a [src.r_hand] in its right hand.\n"
|
|
if (back)
|
|
msg += "It has \icon[src.back] \a [src.back] on its back.\n"
|
|
if (stat == DEAD)
|
|
msg += "<span class='deadsay'>It is limp and unresponsive, with no signs of life.</span>\n"
|
|
else
|
|
msg += "<span class='warning'>"
|
|
var/temp = getBruteLoss()
|
|
if(temp)
|
|
if (temp < 30)
|
|
msg += "It has minor bruising.\n"
|
|
else
|
|
msg += "<B>It has severe bruising!</B>\n"
|
|
|
|
temp = getFireLoss()
|
|
if(temp)
|
|
if (temp < 30)
|
|
msg += "It has minor burns.\n"
|
|
else
|
|
msg += "<B>It has severe burns!</B>\n"
|
|
|
|
temp = getCloneLoss()
|
|
if(temp)
|
|
if(getCloneLoss() < 30)
|
|
msg += "It is slightly deformed.\n"
|
|
else
|
|
msg += "<b>It is severely deformed.</b>\n"
|
|
|
|
if(getBrainLoss() > 60)
|
|
msg += "It seems to be clumsy and unable to think.\n"
|
|
|
|
if(fire_stacks > 0)
|
|
msg += "It's covered in something flammable.\n"
|
|
if(fire_stacks < 0)
|
|
msg += "It's soaked in water.\n"
|
|
|
|
if(stat == UNCONSCIOUS)
|
|
msg += "It isn't responding to anything around it; it seems to be asleep.\n"
|
|
msg += "</span>"
|
|
|
|
if(digitalcamo)
|
|
msg += "It is moving its body in an unnatural and blatantly unsimian manner.\n"
|
|
|
|
if(!getorgan(/obj/item/organ/internal/brain))
|
|
msg += "<span class='deadsay'>It appears that it's brain is missing...</span>\n"
|
|
|
|
msg += "*---------*</span>"
|
|
|
|
user << msg |