2023-09-16 12:38:56 -04:00
|
|
|
-----------------------------------
|
|
|
|
|
-- ID: 6183
|
|
|
|
|
-- Pluton Box
|
|
|
|
|
-- Breaks up a Pluton Box
|
|
|
|
|
-----------------------------------
|
2024-08-24 12:32:37 -04:00
|
|
|
---@type TItem
|
2023-09-16 12:38:56 -04:00
|
|
|
local itemObject = {}
|
|
|
|
|
|
2026-05-25 20:42:11 -06:00
|
|
|
itemObject.onItemCheck = function(target, item, caster)
|
2023-09-16 12:38:56 -04:00
|
|
|
return xi.itemUtils.itemBoxOnItemCheck(target)
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
itemObject.onItemUse = function(target)
|
2024-04-02 13:45:54 -05:00
|
|
|
npcUtil.giveItem(target, { { xi.item.PLUTON, math.random(15, 30) } })
|
2023-09-16 12:38:56 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
|
|
return itemObject
|