mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-01-06 07:22:15 +00:00
Monkeys have several bugs fixed on them, shooting them with weak bullet rounds now works! Also, fixed monkeys not showing being KO/ burned without having brute damage on them first. New chemistry reagents. That'll be required for a upcoming update to chemistry when grinding up refined ore will get reagents or something. Silver, gold, and Uranium. Bar drinks now have resulting units in mixtures equal to all liquids stirred in. No more 50 unit martinis from 30 units gin and vermouth anymore! Map updates - Fixed a maintenance tunnel with no air. Updated Bartender spawn point (so you don't spawn on loading screen). git-svn-id: http://tgstation13.googlecode.com/svn/trunk@1626 316c924e-a436-60f5-8080-3fe189b3f50e
31 lines
1.4 KiB
Plaintext
31 lines
1.4 KiB
Plaintext
/mob/living/carbon/monkey/examine()
|
|
set src in oview()
|
|
|
|
usr << "\blue *---------*"
|
|
usr << text("\blue This is \icon[] <B>[]</B>!", src, src.name)
|
|
if (src.handcuffed)
|
|
usr << text("\blue [] is handcuffed! \icon[]", src.name, src.handcuffed)
|
|
if (src.wear_mask)
|
|
usr << text("\blue [] has a \icon[] [] on \his[] head!", src.name, src.wear_mask, src.wear_mask.name, src)
|
|
if (src.l_hand)
|
|
usr << text("\blue [] has a \icon[] [] in \his[] left hand!", src.name, src.l_hand, src.l_hand.name, src)
|
|
if (src.r_hand)
|
|
usr << text("\blue [] has a \icon[] [] in \his[] right hand!", src.name, src.r_hand, src.r_hand.name, src)
|
|
if (src.back)
|
|
usr << text("\blue [] has a \icon[] [] on \his[] back!", src.name, src.back, src.back.name, src)
|
|
if (src.stat == 2)
|
|
usr << text("\red [] is limp and unresponsive, a dull lifeless look in their eyes.", src.name)
|
|
else
|
|
if (src.bruteloss)
|
|
if (src.bruteloss < 30)
|
|
usr << text("\red [] looks slightly bruised!", src.name)
|
|
else
|
|
usr << text("\red <B>[] looks severely bruised!</B>", src.name)
|
|
if (src.fireloss)
|
|
if (src.fireloss < 30)
|
|
usr << text("\red [] looks slightly burnt!", src.name)
|
|
else
|
|
usr << text("\red <B>[] looks severely burnt!</B>", src.name)
|
|
if (src.stat == 1)
|
|
usr << text("\red [] doesn't seem to be responding to anything around them, their eyes closed as though asleep.", src.name)
|
|
return |