Adds Cluwne EVILFAX

Fox Changes

Fox Spacing
This commit is contained in:
Kyep
2016-07-10 23:19:56 -07:00
parent c06cc2118f
commit e14f1b7529
2 changed files with 6 additions and 1 deletions
+1 -1
View File
@@ -1707,7 +1707,7 @@
if(!istype(H))
to_chat(usr, "This can only be used on instances of type /mob/living/carbon/human")
return
var/etypes = list("Borgification","Corgification","Death By Fire","Total Brain Death","Honk Tumor","Demotion Notice")
var/etypes = list("Borgification","Corgification","Death By Fire","Total Brain Death","Honk Tumor","Cluwne","Demotion Notice")
var/eviltype = input(src.owner, "Which type of evil fax do you wish to send [H]?","Its good to be baaaad...", "") as null|anything in etypes
if(!(eviltype in etypes))
return
+5
View File
@@ -696,6 +696,11 @@
var/obj/item/organ/internal/organ = new /obj/item/organ/internal/honktumor
to_chat(target,"<span class='userdanger'>Life seems funnier, somehow.</span>")
organ.insert(target)
else if(myeffect == "Cluwne")
if(istype(target, /mob/living/carbon/human))
var/mob/living/carbon/human/H = target
to_chat(H, "<span class='userdanger'>You feel surrounded by sadness. Sadness... and HONKS!</span>")
H.makeCluwne()
else if(myeffect == "Demotion Notice")
command_announcement.Announce("[mytarget] is hereby demoted to the rank of Civilian. Process this demotion immediately. Failure to comply with these orders is grounds for termination.","CC Demotion Order")
else