1234567891011121314151617181920212223242526272829303132333435363738 |
- --[[
- Script Name : Spells/Fighter/Brawler/Bruiser/FistofGorynn.lua
- Script Author : John Adams
- Script Date : 2013.08.11 06:08:14
- Script Purpose :
- :
- --]]
- function cast(Caster, Target)
- -- code to cast the spell
- Say(Caster, "Whoops! Guess this is not implemented yet!")
- -- Info from spell_display_effects (remove from script when done)
- -- On a combat hit this spell may cast Strike of Anger on target of attack. Lasts for 12.0 seconds. Triggers about 2.4 times per minute.
- -- Inflicts 626 - 940 crushing damage on target
- -- Increases Crit Chance of caster by 12.0
- -- Cannot be modified except by direct means
- -- Attacker must be behind or flanking
- -- On a combat hit this spell may cast Strike of Anger on target of attack. Lasts for 12.0 seconds. Triggers about 2.4 times per minute.
- -- Increases Crit Chance of caster by 12.0
- -- Increases Threat to target by 3,648
- -- Inflicts 562 - 842 crushing damage on target
- -- Cannot be modified except by direct means
- -- Attacker must be in front of
- -- Caster will deflect 5.0% of incoming attacks.
- -- Reduces physical damage done to caster by 10%
- -- Cannot be modified except by direct means
- end
- function tick(Caster, Target)
- -- code to process each call_frequency (tick) set in spell_tiers
- end
- function remove(Caster, Target)
- -- code to remove the spell
- end
|