1234567891011121314151617181920212223242526272829303132 |
- --[[
- Script Name : Spells/Mage/Enchanter/Illusionist/MirageMastery.lua
- Script Author : John Adams
- Script Date : 2013.08.11 08:08:43
- 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)
- -- Increases the max health of the illusionist's Personae Reflection by 25%
- -- On a hostile spell cast this spell has a 12% chance to cast Soothing Mind on the group. Lasts for 15.0 seconds.
- -- On any combat or spell hit this spell will cast Soothing Mind on target. Lasts for 15.0 seconds.
- -- Increases power of target by 360
- -- Grants a total of 1 trigger of the spell.
- -- Cannot be modified except by direct means
- -- Changes Rapidity to a group buff and adds 10% double attack.
- -- 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
|