mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2025-12-29 03:32:28 +00:00
41 lines
1.1 KiB
Plaintext
41 lines
1.1 KiB
Plaintext
/obj/effect/decal/remains
|
|
gender = PLURAL
|
|
|
|
/obj/effect/decal/remains/human
|
|
name = "remains"
|
|
desc = "They look like human remains. They have a strange aura about them."
|
|
icon = 'icons/effects/blood.dmi'
|
|
icon_state = "remains"
|
|
anchored = TRUE
|
|
|
|
/obj/effect/decal/remains/xeno
|
|
name = "remains"
|
|
desc = "They look like the remains of something... alien. They have a strange aura about them."
|
|
icon = 'icons/effects/blood.dmi'
|
|
icon_state = "remainsxeno"
|
|
anchored = TRUE
|
|
|
|
/obj/effect/decal/remains/robot
|
|
name = "remains"
|
|
desc = "They look like the remains of something mechanical. They have a strange aura about them."
|
|
icon = 'icons/mob/robots.dmi'
|
|
icon_state = "remainsrobot"
|
|
anchored = TRUE
|
|
|
|
/obj/effect/decal/remains/slime
|
|
name = "You shouldn't see this"
|
|
desc = "Noooooooooooooooooooooo"
|
|
icon = 'icons/effects/blood.dmi'
|
|
icon_state = "remains"
|
|
anchored = TRUE
|
|
|
|
/obj/effect/decal/remains/slime/New()
|
|
..()
|
|
var/datum/reagents/R = new/datum/reagents(5)
|
|
var/obj/effect/particle_effect/water/W = new(get_turf(src))
|
|
W.reagents = R
|
|
R.my_atom = W
|
|
R.add_reagent("water", 5)
|
|
R.reaction(get_turf(src))
|
|
qdel(src)
|