landsandboat/scripts/items/armageddon.lua

21 lines
475 B
Lua
Raw Permalink Normal View History

2021-01-18 12:51:02 -05:00
-----------------------------------
-- ID: 19469
-- Item: Armageddon
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.DEVASTATING_BULLET, 99 } }) -- Devastating Bullet x99
end
2021-01-17 11:55:03 -05:00
return itemObject