Reanimate.lua 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. --[[
  2. Script Name : Spells/Priest/Shaman/Defiler/Reanimate.lua
  3. Script Author : John Adams
  4. Script Date : 2013.08.11 07:08:42
  5. Script Purpose :
  6. :
  7. --]]
  8. function cast(Caster, Target)
  9. -- code to cast the spell
  10. Say(Caster, "Whoops! Guess this is not implemented yet!")
  11. -- Info from spell_display_effects (remove from script when done)
  12. -- Resurrects target with 15% health and power
  13. -- Applies Reanimate on termination. Lasts for 1 minute.
  14. -- Heals target for 30.0% of max health
  15. -- This effect cannot be critically applied.
  16. -- Increases power of target by 2.0% instantly and every 4 seconds
  17. -- This effect cannot be critically applied.
  18. -- Applies Revived Sickness on termination. Lasts for 2 minutes.
  19. -- Decreases Toughness of target by 75.0
  20. -- Decreases Lethality of target by 75.0
  21. -- Decreases All Attributes of target by 20.0%
  22. -- If not between levels 1 - 6
  23. -- Decreases Attack Speed of target by 20.0
  24. -- If not between levels 1 - 6
  25. -- Decreases Attack Speed of target by 5.0
  26. -- If between levels 1 - 6
  27. -- Decreases All Attributes of target by 5.0%
  28. -- If between levels 1 - 6
  29. -- If outside an arena
  30. end
  31. function tick(Caster, Target)
  32. -- code to process each call_frequency (tick) set in spell_tiers
  33. end
  34. function remove(Caster, Target)
  35. -- code to remove the spell
  36. end