/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 += "It is limp and unresponsive, with no signs of life.\n" else msg += "" if (src.getBruteLoss()) if (src.getBruteLoss() < 30) msg += "It has minor bruising.\n" else msg += "It has severe bruising!\n" if (src.getFireLoss()) if (src.getFireLoss() < 30) msg += "It has minor burns.\n" else msg += "It has severe burns!\n" if (src.stat == UNCONSCIOUS) msg += "It isn't responding to anything around it; it seems to be asleep.\n" msg += "" if (src.digitalcamo) msg += "It is repulsively uncanny!\n" msg += "*---------*" user << msg return