mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-01-25 08:34:23 +00:00
* big batch of loc assignments * Update emergency.dm * Update spiders.dm * Update parrot.dm * Update ripley.dm * Update firealarm.dm * seems to work * this maybe works? * brainmemes, again * stuff * fix brainmob, camera runtimes
29 lines
716 B
Plaintext
29 lines
716 B
Plaintext
/obj/effect/temp_visual/point
|
|
name = "pointer"
|
|
icon = 'icons/mob/screen_gen.dmi'
|
|
icon_state = "arrow"
|
|
layer = POINT_LAYER
|
|
duration = 25
|
|
|
|
/obj/effect/temp_visual/point/Initialize(mapload, set_invis = 0)
|
|
. = ..()
|
|
var/atom/old_loc = loc
|
|
forceMove(get_turf(src))
|
|
pixel_x = old_loc.pixel_x
|
|
pixel_y = old_loc.pixel_y
|
|
invisibility = set_invis
|
|
|
|
//Used by spraybottles.
|
|
/obj/effect/decal/chempuff
|
|
name = "chemicals"
|
|
icon = 'icons/obj/chempuff.dmi'
|
|
pass_flags = PASSTABLE | PASSGRILLE
|
|
layer = FLY_LAYER
|
|
|
|
/obj/effect/decal/fakelattice
|
|
name = "lattice"
|
|
desc = "A lightweight support lattice."
|
|
icon = 'icons/obj/smooth_structures/lattice.dmi'
|
|
icon_state = "lattice"
|
|
density = TRUE
|