16 lines
394 B
Lua
16 lines
394 B
Lua
-----------------------------------
|
|
-- ID: 4197
|
|
-- rusty_bolt_case
|
|
-----------------------------------
|
|
---@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.RUSTY_BOLT, 99 } })-- 99x rusty_bolt
|
|
end
|
|
|
|
return itemObject
|