mirror of
https://github.com/emagi/eq2emu-content
synced 2026-08-12 20:23:03 -04:00
15 lines
394 B
Lua
Executable file
15 lines
394 B
Lua
Executable file
--[[
|
|
Script Name : Spells/Commoner/DivineJudgment.lua
|
|
Script Author : neatz09
|
|
Script Date : 2020.03.29 02:03:02
|
|
Script Purpose :
|
|
:
|
|
--]]
|
|
|
|
function cast(Caster, Target, DmgType, MinVal, MaxVal)
|
|
SpellDamage(Target, DmgType, (GetLevel(Caster) * 1.08) * MinVal, (GetLevel(Caster) * 1.08) * MaxVal)
|
|
end
|
|
|
|
function remove(Caster, Target)
|
|
|
|
end
|