mirror of
https://github.com/emagi/eq2emu-content
synced 2026-08-12 20:23:03 -04:00
18 lines
503 B
Lua
Executable file
18 lines
503 B
Lua
Executable file
--[[
|
|
Script Name : Spells/Commoner/BlessingofFaith.lua
|
|
Script Author : neatz09
|
|
Script Date : 2020.03.29 06:03:34
|
|
Script Purpose :
|
|
:
|
|
--]]
|
|
|
|
-- Increases power of caster by 30.0% instantly and every 30 seconds
|
|
-- This effect cannot be critically applied
|
|
function cast(Caster, Target, pctHeal)
|
|
SpellHeal("Power", GetPCTOfPower(Caster, pctHeal))
|
|
end
|
|
|
|
function tick(Caster, Target, pctHeal)
|
|
SpellHeal("Power", GetPCTOfPower(Caster, pctHeal))
|
|
end
|
|
|