Files
Paradise/code/modules/mob/mob_death_base.dm
AffectedArc07 b34e8fa301 [READY] CI now bans files with the same name (#20195)
* CI now bans files with the same name

* Part 1

* Warriorstar python tweaks

* Part Deux

* Fix unticked

* fix
2023-02-04 16:33:41 -06:00

25 lines
495 B
Plaintext

// can't die if you're not alive
/mob/proc/gib()
return FALSE
/mob/proc/dust()
return FALSE
/mob/proc/melt()
return FALSE
/mob/proc/death(gibbed)
SEND_SIGNAL(src, COMSIG_MOB_DEATH, gibbed)
return FALSE
/mob/proc/dust_animation()
var/atom/movable/overlay/animation = null
animation = new(loc)
animation.icon_state = "blank"
animation.icon = 'icons/mob/mob.dmi'
animation.master = src
// flick("dust-m", animation)
new /obj/effect/decal/cleanable/ash(loc)
QDEL_IN(animation, 15)