EchoesoftheAncients.lua 720 B

123456789101112131415161718192021222324252627
  1. --[[
  2. Script Name : Spells/Priest/Shaman/Mystic/EchoesoftheAncients.lua
  3. Script Author : neatz09
  4. Script Date : 2020.02.03 09:02:12
  5. Script Purpose :
  6. :
  7. --]]
  8. -- Increases all damage done to target encounter by 1.35%
  9. -- Interrupts target encounter
  10. -- Decreases Mitigation of target encounter vs elemental and noxious damage by 234
  11. function cast(Caster, Target, DmgBonus, Mit)
  12. Say(Caster, "Unsure if dmg bonus works or not")
  13. AddSpellBonus(Caster, 704, DmgBonus)
  14. Interrupt(Caster, Target)
  15. AddSpellBonus(Target, 201, Mit)
  16. AddSpellBonus(Target, 202, Mit)
  17. end
  18. function remove(Caster, Target)
  19. RemoveSpellBonus(Caster, Target)
  20. end