mirror of
https://github.com/emagi/eq2emu-content
synced 2026-08-12 20:23:03 -04:00
15 lines
No EOL
419 B
Lua
Executable file
15 lines
No EOL
419 B
Lua
Executable file
--[[
|
|
Script Name : Spells/Commoner/SpiritGuideItem.lua
|
|
Script Author : neatz09
|
|
Script Date : 2020.11.05 03:11:14
|
|
Script Purpose :
|
|
:
|
|
--]]
|
|
|
|
-- Info from spell_display_effects (remove from script when done)
|
|
-- Resurrects target with 15% health and power
|
|
|
|
function cast(Caster, Target)
|
|
Resurrect(15, 15, 1)
|
|
Say(Caster, "Summoning Sickness not implemented.")
|
|
end |