mirror of
https://github.com/emagi/eq2emu-content
synced 2026-08-12 20:23:03 -04:00
18 lines
574 B
Lua
Executable file
18 lines
574 B
Lua
Executable file
--[[
|
|
Script Name : ItemScripts/mintjulep.lua
|
|
Script Author : LordPazuzu
|
|
Script Date : 2022.12.27 08:12:47
|
|
Script Purpose :
|
|
:
|
|
--]]
|
|
|
|
function cast(Item, Player)
|
|
Spell = GetSpell(5463)
|
|
Regenz = 15.0
|
|
newDuration = 18000
|
|
SetSpellData(Spell, "duration1", newDuration)
|
|
SetSpellData(Spell, "duration2", newDuration)
|
|
SetSpellDataIndex(Spell, 0, Regenz)
|
|
SetSpellDisplayEffect(Spell, 0, "description", "Increases Out-of-Combat Power Regeneration of target by " .. Regenz)
|
|
CastCustomSpell(Spell, Player, Player)
|
|
end
|