mirror of
https://github.com/emagi/eq2emu-content
synced 2026-08-12 20:23:03 -04:00
19 lines
520 B
Lua
Executable file
19 lines
520 B
Lua
Executable file
--[[
|
|
Script Name : Spells/Commoner/DrawUponHeart.lua
|
|
Script Author : neatz09
|
|
Script Date : 2019.10.16 03:10:49
|
|
Script Purpose :
|
|
:
|
|
--]]
|
|
|
|
|
|
|
|
function cast(Caster, Target, pctHealMin, pctHealMax)
|
|
SpellHeal("Power", GetPCTOfPower(Caster, pctHealMin), GetPCTOfPower(Caster, pctHealMax), Caster, 2)
|
|
end
|
|
|
|
function tick(Caster, Target, pctHealMin, pctHealMax)
|
|
SpellHeal("Power", GetPCTOfPower(Caster, pctHealMin), GetPCTOfPower(Caster, pctHealMax), Caster, 2)
|
|
end
|
|
|
|
|