mirror of
https://github.com/emagi/eq2emu-content
synced 2026-08-12 20:23:03 -04:00
18 lines
No EOL
366 B
Lua
18 lines
No EOL
366 B
Lua
--[[
|
|
Script Name : ItemScripts/FlaskofWater.lua
|
|
Script Author : LordPazuzu
|
|
Script Date : 2024.11.30 11:11:11
|
|
Script Purpose :
|
|
:
|
|
--]]
|
|
|
|
--[[ Begin Item Effects
|
|
|
|
* Increases Out-of-Combat Power Regeneration of target by 15.0
|
|
|
|
End Item Effects--]]
|
|
|
|
function cast(Item, Player)
|
|
CastSpell(Player, 5009, 2)
|
|
|
|
end |