mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2025-12-27 18:41:59 +00:00
20 lines
481 B
Plaintext
20 lines
481 B
Plaintext
/obj/structure/alien/node
|
|
name = "alien weed node"
|
|
desc = "Some kind of strange, pulsating structure."
|
|
icon_state = "weednode"
|
|
health = 100
|
|
layer = 3.1
|
|
|
|
/obj/structure/alien/node/Initialize()
|
|
. = ..()
|
|
START_PROCESSING(SSprocessing, src)
|
|
|
|
/obj/structure/alien/node/Destroy()
|
|
STOP_PROCESSING(SSprocessing, src)
|
|
return ..()
|
|
|
|
/obj/structure/alien/node/process()
|
|
if(locate(/obj/effect/plant) in loc)
|
|
return
|
|
new /obj/effect/plant(get_turf(src), SSplants.seeds["xenomorph"])
|