TormentingConversion.lua 1.2 KB

12345678910111213141516171819202122232425262728293031323334
  1. --[[
  2. Script Name : Spells/Priest/Cleric/Inquisitor/TormentingConversion.lua
  3. Script Author : John Adams
  4. Script Date : 2013.08.11 06:08:11
  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. -- Makes target afraid
  13. -- Applies Traumatization on termination. Lasts for 8.8 seconds.
  14. -- Decreases Threat to target by 759 instantly and Decreases Threat by 801 every 1.8 seconds thereafter
  15. -- Mesmerizes target
  16. -- Dispelled when target takes damage
  17. -- Epic targets gain an immunity to Mesmerize effects of 26.3 seconds and duration is reduced to 2.9 seconds.
  18. -- Resistibility increases against targets higher than level 76.
  19. -- 30% chance to dispel when target takes damage
  20. -- Does not affect Epic targets
  21. -- Resistibility increases against targets higher than level 29.
  22. end
  23. function tick(Caster, Target)
  24. -- code to process each call_frequency (tick) set in spell_tiers
  25. end
  26. function remove(Caster, Target)
  27. -- code to remove the spell
  28. end