mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-14 20:23:26 +00:00
39 lines
1.2 KiB
Plaintext
39 lines
1.2 KiB
Plaintext
/mob/living/carbon/monkey/examine(mob/user)
|
|
..(user)
|
|
|
|
var/msg = ""
|
|
if (src.handcuffed)
|
|
msg += "It is \icon[src.handcuffed] handcuffed!\n"
|
|
if (src.wear_mask)
|
|
msg += "It has \icon[src.wear_mask] \a [src.wear_mask] on its head.\n"
|
|
if (src.l_hand)
|
|
msg += "It has \icon[src.l_hand] \a [src.l_hand] in its left hand.\n"
|
|
if (src.r_hand)
|
|
msg += "It has \icon[src.r_hand] \a [src.r_hand] in its right hand.\n"
|
|
if (src.back)
|
|
msg += "It has \icon[src.back] \a [src.back] on its back.\n"
|
|
if (src.stat == DEAD)
|
|
msg += "<span class='deadsay'>It is limp and unresponsive, with no signs of life.</span>\n"
|
|
else
|
|
msg += "<span class='warning'>"
|
|
if (src.getBruteLoss())
|
|
if (src.getBruteLoss() < 30)
|
|
msg += "It has minor bruising.\n"
|
|
else
|
|
msg += "<B>It has severe bruising!</B>\n"
|
|
if (src.getFireLoss())
|
|
if (src.getFireLoss() < 30)
|
|
msg += "It has minor burns.\n"
|
|
else
|
|
msg += "<B>It has severe burns!</B>\n"
|
|
if (src.stat == UNCONSCIOUS)
|
|
msg += "It isn't responding to anything around it; it seems to be asleep.\n"
|
|
msg += "</span>"
|
|
|
|
if (src.digitalcamo)
|
|
msg += "It is repulsively uncanny!\n"
|
|
|
|
msg += "*---------*</span>"
|
|
|
|
user << msg
|
|
return |