mirror of
https://github.com/emagi/eq2emu-content
synced 2026-08-12 20:23:03 -04:00
25 lines
No EOL
609 B
Lua
Executable file
25 lines
No EOL
609 B
Lua
Executable file
--[[
|
|
Script Name : Spells/Commoner/FeralTenacitySubSpell.lua
|
|
Script Author : neatz09
|
|
Script Date : 2020.10.27 11:10:55
|
|
Script Purpose : Subspell for Feral Tenacity
|
|
:
|
|
--]]
|
|
|
|
-- Heals target for 256
|
|
-- Heals target for 64 every 2 seconds
|
|
-- Increases AGI of target by 28.6
|
|
|
|
function cast(Caster, Target, Healz, Tick, Stat)
|
|
SpellHeal("Heal", Healz)
|
|
AddSpellBonus(Target, 2, Stat)
|
|
end
|
|
|
|
function tick(Caster, Target, Healz, Tick, Stat)
|
|
SpellHeal("Heal", Tick)
|
|
end
|
|
|
|
|
|
function remove(Caster, Target)
|
|
RemoveSpellBonus(Target)
|
|
end |