mirror of
https://github.com/emagi/eq2emu-content
synced 2026-08-12 20:23:03 -04:00
21 lines
530 B
Lua
Executable file
21 lines
530 B
Lua
Executable file
--[[
|
|
Script Name : ItemScripts/MinorSalve.lua
|
|
Script Author : LordPazuzu
|
|
Script Date : 2023.10.10 01:10:07
|
|
Script Purpose :
|
|
:
|
|
--]]
|
|
|
|
--[[ Begin Item Effects
|
|
|
|
* Applies Minor Salve when Activated.
|
|
* Dispels 18 levels of physical hostile effects on caster
|
|
|
|
End Item Effects--]]
|
|
|
|
function used(Item, Player)
|
|
Spell = GetSpell(2550437)
|
|
SetSpellData(Spell, "name", "Minor Salve")
|
|
SetSpellDataIndex(Spell, 0, 18)
|
|
CastCustomSpell(Spell, Player, Player)
|
|
end
|