FerventFaith.lua 765 B

12345678910111213141516171819
  1. --[[
  2. Script Name : Spells/Priest/Cleric/Inquisitor/FerventFaith.lua
  3. Script Author : neatz09
  4. Script Date : 2019.10.26 12:10:45
  5. Script Purpose :
  6. :
  7. --]]
  8. -- Info from spell_display_effects (remove from script when done)
  9. -- Dispels 140 levels of hostile Fear, hostile Root, hostile Stifle, hostile Stun, hostile Daze and hostile Mesmerize effects on caster
  10. function cast(Caster, Target, Levels)
  11. CureByControlEffect(1, 1, "Cure", Levels)
  12. CureByControlEffect(1, 2, "Cure", Levels)
  13. CureByControlEffect(1, 3, "Cure", Levels)
  14. CureByControlEffect(1, 4, "Cure", Levels)
  15. end
  16. -- You cannot cast this spell while under the effects of something that supresses the use of group cures!
  17. --not implemented