UmbralTrap.lua 398 B

1234567891011121314151617
  1. --[[
  2. Script Name : Spells/Priest/Shaman/UmbralTrap.lua
  3. Script Author : neatz09
  4. Script Date : 2019.12.14 02:12:52
  5. Script Purpose :
  6. :
  7. --]]
  8. -- Decreases DPS of target encounter by 10.6
  9. function cast(Caster, Target, DebuffAmt)
  10. AddSpellBonus(Target, 629, DebuffAmt)
  11. end
  12. function remove(Caster, Target)
  13. RemoveSpellBonus(Target)
  14. end