123456789101112131415161718192021222324252627282930 |
- --[[
- Script Name : Spells/Fighter/Warrior/Berserker/Insolence.lua
- Script Author : John Adams
- Script Date : 2013.08.11 02:08:47
- 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 Insolent Gibe.
- -- Increases Threat to targets in Area of Effect by 1,298 - 1,814
- -- Applies Insolent Assault.
- -- Inflicts 596 - 895 melee damage on targets in Area of Effect
- -- When any damage is received this spell has a 50% chance to cast Insolent Gibe on target's attacker.
- -- Increases Threat to target encounter by 608 - 738
- 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
|