123456789101112131415161718192021222324252627282930313233 |
- --[[
- Script Name : Spells/Scout/Animist/Beastlord/SpiritualStance.lua
- Script Author : John Adams
- Script Date : 2013.08.12 08:08:23
- 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)
- -- Using a Primal will activate Spirituality on the Beastlord
- -- Adds 2.4% to base avoidance.
- -- Increases Parry, Deflection and Defense of caster by 19.8
- -- Increases Mitigation of caster vs elemental, noxious and arcane damage by 1080
- -- Increases the caster's effectiveness of worn armor vs physical damage by 10%
- -- When a combat art is used this spell will cast Savage Spirit on target.
- -- Increases savagery of caster by 14.0
- -- This effect cannot be critically applied.
- -- 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
|