123456789101112131415161718192021222324252627282930313233343536373839 |
- --[[
- Script Name : Spells/Scout/Rogue/Swashbuckler/Shanghai.lua
- Script Author : Jabantiz
- Script Date : 2013.12.15 08:12:20
- Script Purpose :
- :
- --]]
- function precast(Caster, Target)
- -- You must be sneaking to use this ability.
- return IsStealthed(Caster)
- end
- function cast(Caster, Target, DmgType, MinVal, MaxVal)
- -- Inflicts 13 - 21 melee damage on target
- if MaxVal ~= nil and MinVal < MaxVal then
- SpellDamage(Target, DmgType, math.random(MinVal, MaxVal))
- else
- SpellDamage(Target, DmgType, MinVal)
- end
- -- Applies Knockdown on termination. Lasts for 2.5 seconds.
- -- Blurs vision of target
- -- Throws target back
- -- Stuns target
- -- Does not affect Epic targets
- if not IsEpic(Target) then
- Knockdown(Target, Caster, 2500)
- AddControlEffect(Target, 4)
- BlurVision(Target, 1.0)
- AddSpellTimer(2500, "RemoveEffects")
- end
- end
- function RemoveEffects(Caster, Target)
- RemoveControlEffect(Target, 4)
- BlurVision(Target, 0)
- end
|