mirror of
https://github.com/CHOMPstation/CHOMPstation.git
synced 2026-08-30 07:26:39 +01:00
Add files via upload
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
mob/living/proc/disguise()
|
||||
set name = "Toggle Form"
|
||||
set desc = "Switch between amorphous and humanoid forms."
|
||||
set category = "Abilities"
|
||||
|
||||
//Blob form
|
||||
if(icon_state !="bear")
|
||||
icon_state="bear"
|
||||
if(icon_state== "bear")
|
||||
to_chat(temporary_form,"<span class='warning'>You can only do this while not stunned.</span>")
|
||||
else
|
||||
to_chat(src,"<span class='warning'>you failed.</span>")
|
||||
|
||||
//Human form
|
||||
else if(stat)
|
||||
to_chat(src,"<span class='warning'>You can only do this while not stunned.</span>")
|
||||
return
|
||||
else
|
||||
to_chat(src,"<span class='warning'>you failed2.</span>")
|
||||
icon_state="synx"
|
||||
Reference in New Issue
Block a user