Petrify.lua 772 B

1234567891011121314151617181920212223242526272829
  1. --[[
  2. Script Name : Spells/Mage/Summoner/Conjuror/Petrify.lua
  3. Script Author : Jabantiz
  4. Script Date : 2014.03.12 06:03:32
  5. Script Purpose :
  6. :
  7. --]]
  8. function cast(Caster, Target, DmgType, MinVal, MaxVal)
  9. -- Inflicts 118 - 144 magic damage on target
  10. if MaxVal ~= nil and MinVal < MaxVal then
  11. SpellDamage(Target, DmgType, math.random(MinVal, MaxVal))
  12. else
  13. SpellDamage(Target, DmgType, MinVal)
  14. end
  15. -- Stuns target
  16. -- If Target is not Epic
  17. if not IsEpic(Target) then
  18. AddControlEffect(Target, 4)
  19. end
  20. -- Resistibility increases against targets higher than level 29.
  21. end
  22. function remove(Caster, Target)
  23. RemoveControlEffect(Target, 4)
  24. end