eq2emu-content/ItemScripts/Brazsspecialbloodpudding.lua
2025-03-07 01:39:52 +00:00

18 lines
590 B
Lua

--[[
Script Name : ItemScripts/Brazsspecialbloodpudding.lua
Script Author : LordPazuzu
Script Date : 2025.03.06 07:03:03
Script Purpose :
:
--]]
function cast(Item, Player)
Spell = GetSpell(5462)
Regenz = 10.0
newDuration = 18000
SetSpellData(Spell, "duration1", newDuration)
SetSpellData(Spell, "duration2", newDuration)
SetSpellDataIndex(Spell, 0, Regenz)
SetSpellDisplayEffect(Spell, 0, "description", "Increases Out-of-Combat Health Regeneration of target by " .. Regenz)
CastCustomSpell(Spell, Player, Player)
end