12345678910111213141516171819202122232425262728293031 |
- --[[
- Script Name : Spells/Priest/Shaman/Defiler/TribalSpirit.lua
- Script Author : John Adams
- Script Date : 2013.08.11 07:08:39
- 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)
- -- Adds additional healing to Ancient Shroud
- -- Adds additional healing to Carrion Warding
- -- On a beneficial spell cast this spell has a 12% chance to cast Tribal Spirit on the group. Lasts for 12.0 seconds.
- -- Improves the value of healing and ward spells by 8%.
- -- Reduces elemental, noxious, arcane damage done to group members (AE) by 5%
- -- 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
|