mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2025-12-26 10:12:17 +00:00
* CI now bans files with the same name * Part 1 * Warriorstar python tweaks * Part Deux * Fix unticked * fix
25 lines
495 B
Plaintext
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)
|