Spellbind.lua 417 B

1234567891011121314151617
  1. --[[
  2. Script Name : Spells/AA/Spellbind.lua
  3. Script Author : neatz09
  4. Script Date : 2020.12.20 11:12:21
  5. Script Purpose :
  6. :
  7. --]]
  8. -- Increases potency by 25% of the caster's base potency
  9. --this needs to be reworked
  10. function cast(Caster, Target, PotAmt)
  11. AddSpellBonus(Target, 659, PotAmt)
  12. end
  13. function remove(Caster, Target)
  14. RemoveSpellBonus(Target)
  15. end