Ports SStyping from Nebula. (#16169)

* Ports SStyping from Nebula.

* the spook

* a

* fix

* bring the fanfare to its knees

* add a speech bubble type pref

---------

Co-authored-by: Matt Atlas <liermattia@gmail.com>
This commit is contained in:
Matt Atlas
2023-04-10 02:08:48 +02:00
committed by GitHub
parent 2e61f40649
commit ab5d39db19
68 changed files with 490 additions and 175 deletions

View File

@@ -594,11 +594,11 @@ var/list/admin_verbs_cciaa = list(
set desc = "Toggles ghost-like invisibility (Don't abuse this)"
if(holder && mob)
if(mob.invisibility == INVISIBILITY_OBSERVER)
mob.invisibility = initial(mob.invisibility)
mob.set_invisibility(initial(mob.invisibility))
to_chat(mob, "<span class='danger'>Invisimin off. Invisibility reset.</span>")
mob.alpha = max(mob.alpha + 100, 255)
else
mob.invisibility = INVISIBILITY_OBSERVER
mob.set_invisibility(INVISIBILITY_OBSERVER)
to_chat(mob, "<span class='notice'><b>Invisimin on. You are now as invisible as a ghost.</b></span>")
mob.alpha = max(mob.alpha - 100, 0)