landsandboat/scripts/items/popper.lua

17 lines
373 B
Lua
Raw Permalink Normal View History

2021-01-18 12:51:02 -05:00
-----------------------------------
-- ID: 5769
-- Popper
-- Bursts of light appear in front of the user with a crackling sound, with the word "Congratulations!"
2021-01-18 12:51:02 -05:00
-----------------------------------
---@type TItem
local itemObject = {}
2016-01-16 01:26:33 -05:00
itemObject.onItemCheck = function(target, item, caster)
return 0
end
2016-01-16 01:26:33 -05:00
itemObject.onItemUse = function(target)
end
2021-01-17 11:55:03 -05:00
return itemObject