ScornDiskDeathmage.lua 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. --[[
  2. Script Name : Spells/Commoner/ScornDiskDeathmage.lua
  3. Script Author : Skywalker646
  4. Script Date : 2020.05.13 05:05:21
  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, Crit, Potency, Pwr, Health, Speed)
  15. -- Summons a mount
  16. SetMount(Caster, 10978)
  17. -- Increases Crit Bonus of caster by 2.0%
  18. AddSpellBonus(Caster, 657, Crit)
  19. -- Increases the potency of all abilities by 2.0%
  20. AddSpellBonus(Caster, 659, Potency)
  21. --Increases Max Power of caster by 300.0
  22. AddSpellBonus(Caster, 619, Pwr)
  23. --Increases Max Health of caster by 300.0
  24. AddSpellBonus(Caster, 606, Health)
  25. --Increases your Ground Speed by 130%
  26. AddSpellBonus(Caster, 611, Speed)
  27. -- Reduces maximum falling speed of caster.
  28. AddControlEffect(Caster, 13)
  29. end
  30. function remove(Caster, Target)
  31. RemoveSpellBonus(Caster)
  32. RemoveSkillBonus(Caster)
  33. RemoveControlEffect(Caster, 13)
  34. SetMount(Caster, 0)
  35. end