landsandboat/scripts/items/annihilator.lua

21 lines
513 B
Lua
Raw Permalink Normal View History

2021-01-18 12:51:02 -05:00
-----------------------------------
-- ID: 18336, 18337, 18649, 18663, 18677, 19758, 19851, 21260, 21261, 21267
-- Item: Annihilator
2021-01-18 12:51:02 -05:00
-----------------------------------
---@type TItem
local itemObject = {}
itemObject.onItemCheck = function(target, item, caster)
if target:getFreeSlotsCount() == 0 then
2021-04-01 15:10:15 -04:00
return xi.msg.basic.ITEM_UNABLE_TO_USE
end
return 0
end
itemObject.onItemUse = function(target)
npcUtil.giveItem(target, { { xi.item.ERADICATING_BULLET, 99 } })
end
2021-01-17 11:55:03 -05:00
return itemObject