Add files via upload

This commit is contained in:
Vulpias
2018-06-17 13:13:40 +02:00
committed by GitHub
parent 6ad1aa9110
commit 99fa0e3c68
+20
View File
@@ -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"