16 lines
329 B
Lua
16 lines
329 B
Lua
-----------------------------------
|
|
-- ID: 4169
|
|
-- Little Comet
|
|
-- Several sparkles rise and fall, twinkling steadily
|
|
-----------------------------------
|
|
---@type TItem
|
|
local itemObject = {}
|
|
|
|
itemObject.onItemCheck = function(target, item, caster)
|
|
return 0
|
|
end
|
|
|
|
itemObject.onItemUse = function(target)
|
|
end
|
|
|
|
return itemObject
|