SpiritoftheHawk.lua 517 B

123456789101112131415161718192021222324
  1. --[[
  2. Script Name : Spells/Commoner/SpiritoftheHawk.lua
  3. Script Author : neatz09
  4. Script Date : 2020.04.04 05:04:08
  5. Script Purpose :
  6. :
  7. --]]
  8. -- Increases Power Regen of caster by 60.0
  9. function cast(Caster, Target, Pwr)
  10. if (GetLevel(Caster) >= 40)
  11. then
  12. AddSpellBonus(Caster, 603, Pwr)
  13. SetIllusion(Caster, 2358)
  14. else
  15. SetIllusion(Caster, 0)
  16. end
  17. end
  18. function remove(Caster, Target)
  19. RemoveSpellBonus(Caster)
  20. SetIllusion(Caster, 0)
  21. end