1234567891011121314151617181920212223242526272829 |
- --[[
- Script Name : Spells/Fighter/Crusader/Paladin/ElixirofResuscitation.lua
- Script Author : neatz09
- Script Date : 2019.10.12 11:10:54
- Script Purpose :
- :
- --]]
- function cast(Caster, Target)
- Resurrect(13, 13, 1)
- Say(Caster, "2 Subspells needed")
- end
- -- Applies Resurrect on termination.
- -- Heals target for 100.0% of max health
- -- This effect cannot be critically applied.
- -- Applies Revived Sickness on termination. Lasts for 2 minutes.
- -- Decreases All Attributes of target by 20.0%
- -- If not between levels 1 - 6
- -- Decreases Haste of target by 20.0
- -- If not between levels 1 - 6
- -- Decreases All Attributes of target by 5.0%
- -- If between levels 1 - 6
- -- Decreases Haste of target by 5.0
- -- If between levels 1 - 6
- -- Resurrects target with 13% health and power
- -- If outside an arena
- -- If between levels 1 - 6
- -- If outside an arena
|