Reincarnation.lua 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. --[[
  2. Script Name : Spells/Priest/Druid/Warden/Reincarnation.lua
  3. Script Author : John Adams
  4. Script Date : 2013.08.11 07:08:26
  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 Reincarnate on termination. Lasts for 1 minute.
  14. -- Increases All Attributes of target by 15.0%
  15. -- Increases Attack Speed of target by 31.3
  16. -- Increases Damage Per Second of target by 36.0
  17. -- Increases Crushing, Piercing and Slashing of target by 15.0
  18. -- Heals target for 16.6% of max health
  19. -- Heals target for 0.6% of max health every 6 seconds
  20. -- Shapechanges target into a wolf
  21. -- Applies Revived Sickness on termination. Lasts for 2 minutes.
  22. -- Decreases Toughness of target by 145.0
  23. -- Decreases Lethality of target by 145.0
  24. -- Decreases All Attributes of target by 20.0%
  25. -- If not between levels 1 - 6
  26. -- Decreases Attack Speed of target by 20.0
  27. -- If not between levels 1 - 6
  28. -- Decreases Attack Speed of target by 5.0
  29. -- If between levels 1 - 6
  30. -- Decreases All Attributes of target by 5.0%
  31. -- If between levels 1 - 6
  32. -- If outside an arena
  33. end
  34. function tick(Caster, Target)
  35. -- code to process each call_frequency (tick) set in spell_tiers
  36. end
  37. function remove(Caster, Target)
  38. -- code to remove the spell
  39. end