mirror of
https://github.com/emagi/eq2emu-content
synced 2026-08-12 20:23:03 -04:00
16 lines
No EOL
386 B
Lua
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 |