CalmTranquility.lua 577 B

12345678910111213141516171819
  1. --[[
  2. Script Name : Spells/Fighter/Brawler/Monk/CalmTranquility.lua
  3. Script Author : Jabantiz
  4. Script Date : 2014.01.13 01:01:47
  5. Script Purpose :
  6. :
  7. --]]
  8. function cast(Caster, Target, CastingSpeed, AttackSpeed)
  9. -- Increases Ability Casting Speed of raid and group members (AE) by 2.4%
  10. AddSpellBonus(Target, 664, CastingSpeed)
  11. -- Increases Attack Speed of raid and group members (AE) by 6.0
  12. AddSpellBonus(Target, 617, AttackSpeed)
  13. end
  14. function remove(Caster, Target)
  15. RemoveSpellBonus(Target)
  16. end