mirror of
https://github.com/emagi/eq2emu-content
synced 2026-08-12 20:23:03 -04:00
17 lines
402 B
Lua
Executable file
17 lines
402 B
Lua
Executable file
--[[
|
|
Script Name : Spells/Commoner/GustofInsight.lua
|
|
Script Author : neatz09
|
|
Script Date : 2020.04.04 10:04:35
|
|
Script Purpose :
|
|
:
|
|
--]]
|
|
|
|
-- Increases power of caster by 2 instantly and every 5 seconds.
|
|
|
|
function cast(Caster, Target, PwrAmt)
|
|
SpellHeal("Power", PwrAmt)
|
|
end
|
|
|
|
function tick(Caster, Target, PwrAmt)
|
|
SpellHeal("Power", PwrAmt)
|
|
end
|