landsandboat/scripts/items/carbuncles_pole.lua
TracentEden e841ff3070 Add WTB quest and small WTB fixes
Co-Authored-By: dallano <dallano@users.noreply.github.com>
2025-04-10 00:02:14 +03:00

23 lines
600 B
Lua

-----------------------------------
-- ID: 18581
-- Item: Carbuncles Pole
-- Item Effect: Restores 160-170 HP
-----------------------------------
local itemObject = {}
itemObject.onItemCheck = function(target)
if target:getHP() == target:getMaxHP() then
return xi.msg.basic.ITEM_UNABLE_TO_USE
end
return 0
end
itemObject.onItemUse = function(target)
local hpCap = target:getMaxHP() - target:getHP()
local hpHeal = utils.clamp(math.random(160, 170), 0, hpCap)
target:addHP(hpHeal)
target:messageBasic(xi.msg.basic.RECOVERS_HP, 0, hpHeal)
end
return itemObject