SpiritTotemoftheBamboo.lua 441 B

1234567891011121314151617181920
  1. --[[
  2. Script Name : Spells/Commoner/SpiritTotemoftheBamboo.lua
  3. Script Author : neatz09
  4. Script Date : 2020.04.04 05:04:55
  5. Script Purpose :
  6. :
  7. --]]
  8. -- Increases Power Regen of caster by 108.0
  9. function cast(Caster, Target, Pwr)
  10. if (GetLevel(Caster) >= 80 )
  11. then
  12. AddSpellBonus(Caster, 603, Pwr)
  13. end
  14. end
  15. function remove(Caster, Target)
  16. RemoveSpellBonus(Caster)
  17. end