mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-01-09 17:13:36 +00:00
* Adds the check components * Adds in trailing newlines * Converts all CRLF to LF * Post merge EOF * Post merge line endings * Final commit
47 lines
1.4 KiB
Plaintext
47 lines
1.4 KiB
Plaintext
/obj/effect/decal/remains
|
|
gender = PLURAL
|
|
|
|
/obj/effect/decal/remains/acid_act()
|
|
visible_message("<span class='warning'>[src] dissolve[gender==PLURAL?"":"s"] into a puddle of sizzling goop!</span>")
|
|
playsound(src, 'sound/items/welder.ogg', 150, TRUE)
|
|
new /obj/effect/decal/cleanable/greenglow(drop_location())
|
|
qdel(src)
|
|
|
|
/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)
|