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

16 lines
No EOL
386 B
Lua

--[[
Script Name : Spells/Commoner/Determination.lua
Script Author : LordPazuzu
Script Date : 2024.05.11 02:05:15
Script Purpose :
:
--]]
function cast(Caster, Target)
MaxPower = GetMaxPower(Caster)
AddSpellBonus(Caster, 501, math.ceil(MaxPower * 0.03))
end
function remove (Caster, Target)
RemoveSpellBonus()
end