16 lines
386 B
Lua
16 lines
386 B
Lua
-----------------------------------
|
|
-- ID: 15927
|
|
-- pinwheel_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.PINWHEEL, 99 } }) -- pinwheel
|
|
end
|
|
|
|
return itemObject
|