mirror of
https://github.com/KabKebab/GS13.git
synced 2026-08-22 12:36:16 +01:00
25 lines
810 B
Plaintext
25 lines
810 B
Plaintext
/mob/living/silicon/ai/examine(mob/user)
|
|
. = list("<span class='info'>*---------*\nThis is [icon2html(src, user)] <EM>[src]</EM>!")
|
|
if (stat == DEAD)
|
|
. += "<span class='deadsay'>It appears to be powered-down.</span>"
|
|
else
|
|
. += "<span class='warning'>"
|
|
if (getBruteLoss())
|
|
if (getBruteLoss() < 30)
|
|
. += "It looks slightly dented."
|
|
else
|
|
. += "<B>It looks severely dented!</B>"
|
|
if (getFireLoss())
|
|
if (getFireLoss() < 30)
|
|
. += "It looks slightly charred."
|
|
else
|
|
. += "<B>Its casing is melted and heat-warped!</B>"
|
|
. += "</span>"
|
|
if(deployed_shell)
|
|
. += "The wireless networking light is blinking."
|
|
else if (!shunted && !client)
|
|
. += "[src]Core.exe has stopped responding! NTOS is searching for a solution to the problem..."
|
|
. += "*---------*</span>"
|
|
. += ..()
|
|
|