17 lines
415 B
Lua
17 lines
415 B
Lua
-----------------------------------
|
|
-- ID: 6180
|
|
-- Pluton Case
|
|
-- Breaks up a Pluton 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.PLUTON, math.randomInt(3, 15) } })
|
|
end
|
|
|
|
return itemObject
|