Files
CHOMPStation2/code/game/gamemodes/technomancer/spells/aura/aura.dm
CHOMPStation2StaffMirrorBot fe69ddd909 [MIRROR] some more NEW to init (#10148)
Co-authored-by: Kashargul <144968721+Kashargul@users.noreply.github.com>
2025-02-13 11:00:18 +01:00

22 lines
578 B
Plaintext

/obj/item/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/spell/aura/Initialize(mapload)
. = ..()
set_light(calculate_spell_power(7), calculate_spell_power(4), l_color = glow_color)
START_PROCESSING(SSobj, src)
log_and_message_admins("has started casting [src].")
/obj/item/spell/aura/Destroy()
STOP_PROCESSING(SSobj, src)
log_and_message_admins("has stopped maintaining [src].")
return ..()
/obj/item/spell/aura/process()
return