17 lines
442 B
Lua
17 lines
442 B
Lua
-----------------------------------
|
|
-- Velum Cell
|
|
-- ID 5380
|
|
-- Removes INT Down effect
|
|
-----------------------------------
|
|
---@type TItem
|
|
local itemObject = {}
|
|
|
|
itemObject.onItemCheck = function(target, item, caster)
|
|
return xi.salvage.onCellItemCheck(target, xi.effect.DEBILITATION, 0x010)
|
|
end
|
|
|
|
itemObject.onItemUse = function(target)
|
|
return xi.salvage.onCellItemUse(target, xi.effect.DEBILITATION, 0x010, 15)
|
|
end
|
|
|
|
return itemObject
|