12345678910111213141516171819202122232425262728293031 |
- --[[
- Script Name : Spells/Scout/Bard/Troubadour/AyonicInspiration.lua
- Script Author : John Adams
- Script Date : 2013.08.11 09:08:25
- Script Purpose :
- :
- --]]
- function cast(Caster, Target)
- -- code to cast the spell
- Say(Caster, "Whoops! Guess this is not implemented yet!")
- -- Info from spell_display_effects (remove from script when done)
- -- Applies the effects of Perfection of the Maestro to all raid members.
- -- Aria of Magic will improve hostile spell damage by 10%
- -- On any combat or spell hit this spell may cast Ayonic Hymn on target of attack. Lasts for 12.0 seconds. Triggers about 2.4 times per minute.
- -- Increases Crit Chance of caster by 15.0
- -- Inflicts 626 - 940 mental damage on target
- -- Cannot be modified except by direct means
- -- Cannot be modified except by direct means
- end
- function tick(Caster, Target)
- -- code to process each call_frequency (tick) set in spell_tiers
- end
- function remove(Caster, Target)
- -- code to remove the spell
- end
|