Recklessness.lua 1.1 KB

123456789101112131415161718192021222324252627282930313233
  1. --[[
  2. Script Name : Spells/Fighter/Recklessness.lua
  3. Script Author : John Adams
  4. Script Date : 2013.08.11 02:08:15
  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. -- Doubles the caster's potency
  13. -- Increases all damage done to caster by 50%
  14. -- Exiting this stance in combat sets the fighter to extremely low health. Does not occur in PVP combat.
  15. -- Grants Reckless to caster, halving all taunt values and caster cannot block incoming attacks
  16. -- Decreases Hate Gain of caster by 30.0%
  17. -- Increases Potency of caster by 50.0%
  18. -- Removes all threat positions from abilities that inflict damage.
  19. -- Must not be engaged in combat
  20. -- Cannot be modified except by direct means
  21. end
  22. function tick(Caster, Target)
  23. -- code to process each call_frequency (tick) set in spell_tiers
  24. end
  25. function remove(Caster, Target)
  26. -- code to remove the spell
  27. end