mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-29 03:22:12 +00:00
Co-authored-by: Changelogs <action@github.com> Co-authored-by: Heroman3003 <31296024+Heroman3003@users.noreply.github.com> Co-authored-by: Guti <32563288+TheCaramelion@users.noreply.github.com> Co-authored-by: Kashargul <144968721+Kashargul@users.noreply.github.com> Co-authored-by: Kashargul <KashL@t-online.de>
22 lines
560 B
Plaintext
22 lines
560 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/New()
|
|
..()
|
|
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
|