Premonition.lua 498 B

12345678910111213141516171819
  1. --[[
  2. Script Name : Spells/Priest/Shaman/Mystic/Premonition.lua
  3. Script Author : Jabantiz
  4. Script Date : 2013.12.13 06:12:01
  5. Script Purpose :
  6. :
  7. --]]
  8. function cast(Caster, Target, BonusSta, BonusPower)
  9. -- Increases STA of target by 1.9
  10. AddSpellBonus(Target, 1, BonusSta)
  11. -- Increases Max Power of target by 21.9
  12. AddSpellBonus(Target, 501, BonusPower)
  13. end
  14. function remove(Caster, Target)
  15. RemoveSpellBonus(Target)
  16. end