12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- --[[
- Script Name : Spells/Commoner/MidnightMistrunnerPinkSaddle.lua
- Script Author : Skywalker646
- Script Date : 2020.04.26 07:04:03
- Script Purpose :
- :
- --]]
- function precast(Caster)
- if GetMount(Caster) > 0 then
- return false
- end
- return true
- end
- function cast(Caster, Target, Speed, SkillAmt, HP, Mana)
- --Summons a mount to ride
- SetMount(Caster, 6829)
- SetMountColor(Caster, 100, 100, 100, 255, 20, 147)
- -- Increases your ground speed by 130%
- AddSpellBonus(Caster, 611, Speed)
- -- Increase Crushing, Piercing, Slashing, Ranged and Disruption of caster by 7
- AddSkillBonus(Caster, GetSkillIDByName("Disruption"), SkillAmt)
- AddSkillBonus(Caster, GetSkillIDByName("Slashing"), SkillAmt)
- AddSkillBonus(Caster, GetSkillIDByName("Piercing"), SkillAmt)
- AddSkillBonus(Caster, GetSkillIDByName("Crushing"), SkillAmt)
- AddSkillBonus(Caster, GetSkillIDByName("Ranged"), SkillAmt)
- -- Increases Max Health of caster by 150.0
- AddSpellBonus(Caster, 606, HP)
- --Increases Max Mana of caster by 150.0
- AddSpellBonus(Caster, 619, Mana)
- end
- function remove(Caster, Target)
- SetMount(Caster, 0)
- RemoveSpellBonus(Caster)
- RemoveSkillBonus(Caster)
- end
|