SootfootSpikyLavaCow.lua 896 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. --[[
  2. Script Name : Spells/Commoner/SootfootSpikyLavaCow.lua
  3. Script Author : Skywalker646
  4. Script Date : 2020.05.14 07:05:27
  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, PReg, HReg, Health, Speed)
  15. -- Summons a mount
  16. SetMount(Caster, 10175)
  17. -- Increases Power Regen of caster by 15.0
  18. AddSpellBonus(Caster, 601, PReg)
  19. --Increases Health Regen of caster by 15.0
  20. AddSpellBonus(Caster, 600, HReg)
  21. --Increases Max Health of caster by 100.0
  22. AddSpellBonus(Caster, 606, Health)
  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. end