WallofHatred.lua 1.1 KB

1234567891011121314151617181920212223242526272829303132
  1. --[[
  2. Script Name : Spells/Fighter/Warrior/Berserker/WallofHatred.lua
  3. Script Author : John Adams
  4. Script Date : 2013.08.11 02:08:26
  5. Script Purpose :
  6. :
  7. --]]
  8. function cast(Caster, Target)
  9. -- code to cast the spell
  10. Say(Caster, "Whoops! Guess this is not implemented yet!")
  11. -- Info from spell_display_effects (remove from script when done)
  12. -- On a melee hit this spell may cast Enrage on target of attack. Lasts for 12.0 seconds. Triggers about 2.4 times per minute.
  13. -- Increases Crit Chance of caster by 15.0
  14. -- Inflicts 562 - 842 heat damage on target encounter
  15. -- Increases Multi Attack Chance of caster by 10.0
  16. -- Cannot be modified except by direct means
  17. -- Adds a hate position increase to the initial taunt portion of Insolence.
  18. -- 25% of the damage done to the berserker will be added back to the attacker as additional hate.
  19. -- Cannot be modified except by direct means
  20. end
  21. function tick(Caster, Target)
  22. -- code to process each call_frequency (tick) set in spell_tiers
  23. end
  24. function remove(Caster, Target)
  25. -- code to remove the spell
  26. end