Fixed up Highlander and Dodgeball

This commit is contained in:
ZomgPonies
2014-05-22 14:21:29 -04:00
parent 8c24a36298
commit 342f8c4042
6 changed files with 71 additions and 40 deletions
+22
View File
@@ -51,6 +51,28 @@
if(animation) del(animation)
if(src) del(src)
/mob/proc/melt()
death(1)
var/atom/movable/overlay/animation = null
monkeyizing = 1
canmove = 0
icon = null
invisibility = 101
animation = new(loc)
animation.icon_state = "blank"
animation.icon = 'icons/mob/mob.dmi'
animation.master = src
// flick("liquify", animation)
// new /obj/effect/decal/cleanable/ash(loc)
dead_mob_list -= src
if(client)
respawnable_list += src
spawn(15)
if(animation) del(animation)
if(src) del(src)
/mob/proc/death(gibbed)
@@ -48,6 +48,25 @@
if(animation) del(animation)
if(src) del(src)
/mob/living/carbon/human/melt()
death(1)
var/atom/movable/overlay/animation = null
monkeyizing = 1
canmove = 0
icon = null
invisibility = 101
animation = new(loc)
animation.icon_state = "blank"
animation.icon = 'icons/mob/mob.dmi'
animation.master = src
flick("liquify", animation)
//new /obj/effect/decal/remains/human(loc)
spawn(15)
if(animation) del(animation)
if(src) del(src)
/mob/living/carbon/human/death(gibbed)
if(stat == DEAD) return