16 lines
375 B
Lua
16 lines
375 B
Lua
-----------------------------------
|
|
-- ID: 4250
|
|
-- Crackler
|
|
-- Bursts of light appear in front of the user with a crackling sound, with the word "Congratulations!"
|
|
-----------------------------------
|
|
---@type TItem
|
|
local itemObject = {}
|
|
|
|
itemObject.onItemCheck = function(target, item, caster)
|
|
return 0
|
|
end
|
|
|
|
itemObject.onItemUse = function(target)
|
|
end
|
|
|
|
return itemObject
|