SwarthyWays.lua 1.1 KB

1234567891011121314151617181920212223242526272829303132
  1. --[[
  2. Script Name : Spells/Scout/Rogue/Swashbuckler/SwarthyWays.lua
  3. Script Author : John Adams
  4. Script Date : 2013.08.11 09:08:39
  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. -- Increases Potency of caster by 10.0%
  13. -- On a melee hit this spell may cast Swarthy Chaos on target of attack. Lasts for 12.0 seconds. Triggers about 3.0 times per minute.
  14. -- Adds an additional 8% hate transfer to Swarthy Deception IV
  15. -- Inflicts 475 - 713 piercing damage on target
  16. -- Inflicts 173 - 259 piercing damage on target every 3 seconds
  17. -- Cannot be modified except by direct means
  18. -- Flamboyant Strike will gain an additional effect that causes the target to reduce their spell damage by 10%
  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