mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-08-22 04:22:39 +01:00
* Removes Examine Dividers * Small Brain Moment * Tweaks * Changelog Entry Type
21 lines
814 B
Plaintext
21 lines
814 B
Plaintext
/mob/living/carbon/slime/get_examine_text(mob/user, distance, is_adjacent, infix, suffix)
|
|
. = ..()
|
|
if(src.stat == DEAD)
|
|
. += span("deadsay", "It is limp and unresponsive.\n")
|
|
else
|
|
if(src.getBruteLoss())
|
|
if(src.getBruteLoss() < 40)
|
|
. += SPAN_WARNING("It has some punctures in its flesh!\n")
|
|
else
|
|
. += SPAN_DANGER("It has severe punctures and tears in its flesh!\n")
|
|
|
|
switch(powerlevel)
|
|
if(2 to 3)
|
|
. += SPAN_NOTICE("It is flickering gently with a little electrical activity.\n")
|
|
if(4 to 5)
|
|
. += SPAN_NOTICE("It is glowing gently with moderate levels of electrical activity.\n")
|
|
if(6 to 9)
|
|
. += SPAN_WARNING("It is glowing brightly with high levels of electrical activity.\n")
|
|
if(10)
|
|
. += SPAN_DANGER("It is radiating with massive levels of electrical activity!\n")
|