Makes thermite a component

This commit is contained in:
Jordan Brown
2017-10-27 18:35:36 -04:00
committed by CitadelStationBot
parent 0a32eb3162
commit 82c388b3e8
12 changed files with 147 additions and 46 deletions
+57
View File
@@ -6,6 +6,7 @@
icon_state = "strangepresent"
density = TRUE
anchored = FALSE
<<<<<<< HEAD
/obj/effect/beam
name = "beam"
@@ -50,3 +51,59 @@
/obj/effect/abstract/marker/at
name = "active turf marker"
=======
/obj/effect/beam
name = "beam"
var/def_zone
pass_flags = PASSTABLE
/obj/effect/spawner
name = "object spawner"
/obj/effect/list_container
name = "list container"
/obj/effect/list_container/mobl
name = "mobl"
var/master = null
var/list/container = list( )
/obj/effect/overlay/thermite
name = "thermite"
desc = "Looks hot."
icon = 'icons/effects/fire.dmi'
icon_state = "2" //what?
anchored = TRUE
opacity = TRUE
density = TRUE
layer = FLY_LAYER
//Makes a tile fully lit no matter what
/obj/effect/fullbright
icon = 'icons/effects/alphacolors.dmi'
icon_state = "white"
plane = LIGHTING_PLANE
layer = LIGHTING_LAYER
blend_mode = BLEND_ADD
/obj/effect/abstract/marker
name = "marker"
icon = 'icons/effects/effects.dmi'
anchored = TRUE
icon_state = "wave3"
layer = RIPPLE_LAYER
/obj/effect/abstract/marker/Initialize(mapload)
. = ..()
GLOB.all_abstract_markers += src
/obj/effect/abstract/marker/Destroy()
GLOB.all_abstract_markers -= src
. = ..()
/obj/effect/abstract/marker/at
name = "active turf marker"
>>>>>>> 5dde2e3... Merge pull request #31864 from ninjanomnom/thermite