Bjorn.lua 910 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. --[[
  2. Script Name : Spells/Commoner/Bjorn.lua
  3. Script Author : Skywalker646
  4. Script Date : 2020.03.25 05:03:01
  5. Script Purpose :
  6. :
  7. --]]
  8. function precast(Caster)
  9. if GetMount(Caster) > 0 then
  10. return false
  11. end
  12. return true
  13. end
  14. function cast(Caster, Target, Bonus, Chance, Pwr, Speed)
  15. -- Summons a mount
  16. SetMount(Caster, 9741)
  17. -- Increases Crit Bonus of caster by 1.0%
  18. AddSpellBonus(Caster, 657, Bonus)
  19. -- Increases Crit Chance of caster by 3.0%
  20. AddSpellBonus(Caster, 654, Chance)
  21. --Increases Max Power of caster by 200.0
  22. AddSpellBonus(Caster, 619, Pwr)
  23. --Increases your Ground Speed by 130%
  24. AddSpellBonus(Caster, 611, Speed)
  25. end
  26. function remove(Caster, Target)
  27. RemoveSpellBonus(Caster)
  28. RemoveSkillBonus(Caster)
  29. SetMount(Caster, 0)
  30. RemoveControlEffect(Caster, 12)
  31. end