FistofGorynn.lua 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. --[[
  2. Script Name : Spells/Fighter/Brawler/Bruiser/FistofGorynn.lua
  3. Script Author : John Adams
  4. Script Date : 2013.08.11 06:08:14
  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 combat hit this spell may cast Strike of Anger on target of attack. Lasts for 12.0 seconds. Triggers about 2.4 times per minute.
  13. -- Inflicts 626 - 940 crushing damage on target
  14. -- Increases Crit Chance of caster by 12.0
  15. -- Cannot be modified except by direct means
  16. -- Attacker must be behind or flanking
  17. -- On a combat hit this spell may cast Strike of Anger on target of attack. Lasts for 12.0 seconds. Triggers about 2.4 times per minute.
  18. -- Increases Crit Chance of caster by 12.0
  19. -- Increases Threat to target by 3,648
  20. -- Inflicts 562 - 842 crushing damage on target
  21. -- Cannot be modified except by direct means
  22. -- Attacker must be in front of
  23. -- Caster will deflect 5.0% of incoming attacks.
  24. -- Reduces physical damage done to caster by 10%
  25. -- Cannot be modified except by direct means
  26. end
  27. function tick(Caster, Target)
  28. -- code to process each call_frequency (tick) set in spell_tiers
  29. end
  30. function remove(Caster, Target)
  31. -- code to remove the spell
  32. end