Files
SleepyGemmyandGitHub 14b085f03d Removes Examine Dividers (#18450)
* Removes Examine Dividers

* Small Brain Moment

* Tweaks

* Changelog Entry Type
2024-02-21 12:30:33 +00:00

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")