MidnightMistrunnerPinkSaddle.lua 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. --[[
  2. Script Name : Spells/Commoner/MidnightMistrunnerPinkSaddle.lua
  3. Script Author : Skywalker646
  4. Script Date : 2020.04.26 07:04:03
  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, Speed, SkillAmt, HP, Mana)
  15. --Summons a mount to ride
  16. SetMount(Caster, 6829)
  17. SetMountColor(Caster, 100, 100, 100, 255, 20, 147)
  18. -- Increases your ground speed by 130%
  19. AddSpellBonus(Caster, 611, Speed)
  20. -- Increase Crushing, Piercing, Slashing, Ranged and Disruption of caster by 7
  21. AddSkillBonus(Caster, GetSkillIDByName("Disruption"), SkillAmt)
  22. AddSkillBonus(Caster, GetSkillIDByName("Slashing"), SkillAmt)
  23. AddSkillBonus(Caster, GetSkillIDByName("Piercing"), SkillAmt)
  24. AddSkillBonus(Caster, GetSkillIDByName("Crushing"), SkillAmt)
  25. AddSkillBonus(Caster, GetSkillIDByName("Ranged"), SkillAmt)
  26. -- Increases Max Health of caster by 150.0
  27. AddSpellBonus(Caster, 606, HP)
  28. --Increases Max Mana of caster by 150.0
  29. AddSpellBonus(Caster, 619, Mana)
  30. end
  31. function remove(Caster, Target)
  32. SetMount(Caster, 0)
  33. RemoveSpellBonus(Caster)
  34. RemoveSkillBonus(Caster)
  35. end