Resurgence.lua 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. --[[
  2. Script Name : Spells/Priest/Cleric/Inquisitor/Resurgence.lua
  3. Script Author : John Adams
  4. Script Date : 2013.08.11 06:08:52
  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. -- Applies Revived Sickness on termination. Lasts for 2 minutes.
  13. -- Decreases Toughness of target by 98.0
  14. -- Decreases Lethality of target by 98.0
  15. -- Decreases All Attributes of target by 20.0%
  16. -- If not between levels 1 - 6
  17. -- Decreases Attack Speed of target by 20.0
  18. -- If not between levels 1 - 6
  19. -- Decreases Attack Speed of target by 5.0
  20. -- If between levels 1 - 6
  21. -- Decreases All Attributes of target by 5.0%
  22. -- If between levels 1 - 6
  23. -- Resurrects target with 15% health and power
  24. -- Applies Reforming Soul on termination. Lasts for 1 minute.
  25. -- Increases Mitigation of target vs noxious and arcane damage by 360
  26. -- Heals target for 27.6% of max health
  27. -- Increases Mitigation of target vs elemental damage by 360
  28. -- If outside an arena
  29. end
  30. function tick(Caster, Target)
  31. -- code to process each call_frequency (tick) set in spell_tiers
  32. end
  33. function remove(Caster, Target)
  34. -- code to remove the spell
  35. end