16 lines
372 B
Lua
16 lines
372 B
Lua
-----------------------------------
|
|
-- ID: 15453
|
|
-- lugworm_belt
|
|
-----------------------------------
|
|
---@type TItem
|
|
local itemObject = {}
|
|
|
|
itemObject.onItemCheck = function(target, item, caster)
|
|
return xi.itemUtils.itemBoxOnItemCheck(target)
|
|
end
|
|
|
|
itemObject.onItemUse = function(target)
|
|
npcUtil.giveItem(target, { { xi.item.LUGWORM, 12 } })
|
|
end
|
|
|
|
return itemObject
|