eq2emu-content/Spells/Stalwart.lua
2024-10-26 11:37:28 +00:00

16 lines
No EOL
398 B
Lua

--[[
Script Name : Spells/Stalwart.lua
Script Author : LordPazuzu
Script Date : 2024.04.30 04:04:14
Script Purpose :
:
--]]
function cast(Caster, Target)
CurrentRegen = GetInfoStructSInt(Caster, "hp_regen")
AddSpellBonus(Caster, 600, math.ceil(CurrentRegen * 0.05))
end
function remove (Caster, Target)
RemoveSpellBonus()
end