EgoShock.lua 821 B

1234567891011121314151617181920212223242526
  1. --[[
  2. Script Name : Spells/Mage/Enchanter/Coercer/EgoShock.lua
  3. Script Author : Jabantiz
  4. Script Date : 2014.03.14 06:03:01
  5. Script Purpose :
  6. :
  7. --]]
  8. function cast(Caster, Target, DmgType, MinVal, MaxVal)
  9. -- Inflicts 65 - 79 mental damage on target encounter
  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. -- Dazes target encounter
  16. AddControlEffect(Target, 3)
  17. -- Epic targets gain an immunity to Daze effects of 12.0 seconds and duration is reduced to 1.3 seconds.
  18. -- Resistibility increases against targets higher than level 29.
  19. end
  20. function remove(Caster, Target)
  21. RemoveControlEffect(Target, 3)
  22. end