123456789101112131415161718192021222324252627282930313233 |
- --[[
- Script Name : Spells/Fighter/Warrior/Berserker/WarCry.lua
- Script Author : John Adams
- Script Date : 2013.08.11 02:08:45
- 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)
- -- When damaged this spell has a 5% chance to cast Berserk on target. Lasts for 10.0 seconds.
- -- Increases Damage Per Second of target by 10.2
- -- Increases Attack Speed of target by 10.2
- -- On any combat or spell hit this spell may cast Berserk on target. Lasts for 10.0 seconds. Triggers about 3.0 times per minute.
- -- Increases Damage Per Second of target by 10.2
- -- Increases Attack Speed of target by 10.2
- -- On a kill this spell has a 50% chance to cast Berserk on target. Lasts for 10.0 seconds.
- -- Increases Damage Per Second of target by 10.2
- -- Increases Attack Speed of target by 10.2
- 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
|