ClarasChaoticCacophony.lua 673 B

123456789101112131415161718192021222324
  1. --[[
  2. Script Name : Spells/Scout/Bard/Dirge/ClarasChaoticCacophony.lua
  3. Script Author : neatz09
  4. Script Date : 2020.01.24 09:01:37
  5. Script Purpose :
  6. :
  7. --]]
  8. -- Applies Empowerment of Chaos. Lasts for 1 minute.
  9. -- Increases Fervor of group members (AE) by 3.1
  10. -- Cannot be modified except by direct means
  11. -- Decreases Mitigation of target encounter vs physical damage by 216
  12. function cast(Caster, Target, Mit)
  13. AddSpellBonus(Target, 200, Mit)
  14. Say(Caster, "Needs a subspell for the fervor buff") --Fervor data not parsed
  15. end
  16. function remove(Caster, Target)
  17. RemoveSpellBonus(Target)
  18. end