mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-08-22 20:43:10 +01:00
* Removes Examine Dividers * Small Brain Moment * Tweaks * Changelog Entry Type
19 lines
736 B
Plaintext
19 lines
736 B
Plaintext
/mob/living/silicon/pai/get_examine_text(mob/user, distance, is_adjacent, infix, suffix)
|
|
. = ..(user, distance, is_adjacent, ", personal AI", suffix)
|
|
switch(src.stat)
|
|
if(CONSCIOUS)
|
|
if(!src.client)
|
|
. += "\nIt appears to be in stand-by mode." //afk
|
|
if(UNCONSCIOUS)
|
|
. += "\n<span class='warning'>It doesn't seem to be responding.</span>"
|
|
if(DEAD)
|
|
. += "\n<span class='deadsay'>It looks completely unsalvageable.</span>"
|
|
|
|
if(print_flavor_text())
|
|
. += "\n[print_flavor_text()]\n"
|
|
|
|
if(pose)
|
|
if(findtext(pose, ".", length(pose)) == 0 && findtext(pose, "!", length(pose)) == 0 && findtext(pose, "?", length(pose)) == 0)
|
|
pose = addtext(pose, ".") // Makes sure all emotes end with punctuation.
|
|
. += "\nIt [pose]"
|