mirror of
https://github.com/PolarisSS13/Polaris.git
synced 2025-12-25 09:31:30 +00:00
20 lines
418 B
Plaintext
20 lines
418 B
Plaintext
/obj/item/weapon/spell/aura
|
|
name = "aura template"
|
|
desc = "If you can read me, the game broke! Yay!"
|
|
icon_state = "generic"
|
|
cast_methods = null
|
|
aspect = null
|
|
var/glow_color = "#FFFFFF"
|
|
|
|
/obj/item/weapon/spell/aura/New()
|
|
..()
|
|
set_light(7, 4, l_color = glow_color)
|
|
processing_objects |= src
|
|
|
|
/obj/item/weapon/spell/aura/Destroy()
|
|
processing_objects -= src
|
|
..()
|
|
|
|
/obj/item/weapon/spell/aura/process()
|
|
return
|