PrimevalAwakening.lua 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. --[[
  2. Script Name : Spells/Priest/Druid/Fury/PrimevalAwakening.lua
  3. Script Author : John Adams
  4. Script Date : 2013.08.11 07:08:44
  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 Primeval Awakening on termination. Lasts for 1 minute.
  14. -- Increases Focus of target by 30.0
  15. -- Heals target for 30.0% of max health
  16. -- This effect cannot be critically applied.
  17. -- Increases power of target by 1.0% instantly and every 6 seconds
  18. -- This effect cannot be critically applied.
  19. -- Increases INT of target by 78.0
  20. -- Increases Disruption of target by 30.0
  21. -- Shapechanges target into a treant
  22. -- Increases Subjugation of target by 30.0
  23. -- Applies Revived Sickness on termination. Lasts for 2 minutes.
  24. -- Decreases Toughness of target by 145.0
  25. -- Decreases Lethality of target by 145.0
  26. -- Decreases All Attributes of target by 20.0%
  27. -- If not between levels 1 - 6
  28. -- Decreases Attack Speed of target by 20.0
  29. -- If not between levels 1 - 6
  30. -- Decreases Attack Speed of target by 5.0
  31. -- If between levels 1 - 6
  32. -- Decreases All Attributes of target by 5.0%
  33. -- If between levels 1 - 6
  34. -- If outside an arena
  35. end
  36. function tick(Caster, Target)
  37. -- code to process each call_frequency (tick) set in spell_tiers
  38. end
  39. function remove(Caster, Target)
  40. -- code to remove the spell
  41. end