mirror of
https://github.com/yogstation13/Yogstation.git
synced 2025-02-26 09:04:50 +00:00
34 lines
805 B
Plaintext
34 lines
805 B
Plaintext
/obj/effect/forcefield
|
|
desc = "A space wizard's magic wall."
|
|
name = "FORCEWALL"
|
|
icon_state = "m_shield"
|
|
anchored = TRUE
|
|
opacity = 0
|
|
density = TRUE
|
|
CanAtmosPass = ATMOS_PASS_DENSITY
|
|
|
|
/obj/effect/forcefield/singularity_pull()
|
|
return
|
|
|
|
/obj/effect/forcefield/cult
|
|
desc = "An unholy shield that blocks all attacks."
|
|
name = "glowing wall"
|
|
icon = 'icons/effects/cult_effects.dmi'
|
|
icon_state = "cultshield"
|
|
|
|
///////////Mimewalls///////////
|
|
|
|
/obj/effect/forcefield/mime
|
|
icon_state = "empty"
|
|
name = "invisible wall"
|
|
desc = "You have a bad feeling about this."
|
|
var/timeleft = 300
|
|
|
|
/obj/effect/forcefield/mime/New()
|
|
..()
|
|
QDEL_IN(src, timeleft)
|
|
|
|
/obj/effect/forcefield/mime/advanced
|
|
name = "invisible blockade"
|
|
desc = "You're goona be here a while."
|
|
timeleft = 600 |