mirror of
https://github.com/emagi/eq2emu-content
synced 2026-08-12 20:23:03 -04:00
20 lines
470 B
Lua
Executable file
20 lines
470 B
Lua
Executable file
--[[
|
|
Script Name : Spells/Commoner/ResonatingCascade.lua
|
|
Script Author : neatz09
|
|
Script Date : 2020.04.12 01:04:55
|
|
Script Purpose :
|
|
:
|
|
--]]
|
|
|
|
-- increases power of group members by x instantly and every 12 seconds
|
|
|
|
function cast(Caster, Target, PowerMin)
|
|
local PowerAmt = (GetLevel(Caster) * 1.08) * PowerMin
|
|
|
|
SpellHeal("Power", PowerAmt)
|
|
end
|
|
|
|
|
|
function tick(Caster, Target)
|
|
SpellHeal("Power", PowerAmt)
|
|
end
|