SpiritoftheBat.lua 515 B

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