mirror of
https://github.com/emagi/eq2emu-content
synced 2026-08-12 20:23:03 -04:00
17 lines
417 B
Lua
Executable file
17 lines
417 B
Lua
Executable file
--[[
|
|
Script Name : Spells/Commoner/MarkofNobility.lua
|
|
Script Author : neatz09
|
|
Script Date : 2020.10.27 02:10:45
|
|
Script Purpose : Subspell for Mark of Divinity and Mark of Pawns
|
|
:
|
|
--]]
|
|
|
|
-- Heals Target for X
|
|
|
|
function cast(Caster, Target, TotalHeal)
|
|
SpellHeal("Heal", TotalHeal)
|
|
end
|
|
|
|
function tick(Caster, Target, TotalHeal)
|
|
SpellHeal("Heal", TotalHeal)
|
|
end
|