17 lines
441 B
Lua
17 lines
441 B
Lua
-----------------------------------
|
|
-- Fractus Cell
|
|
-- 5377
|
|
-- Removes DEX Down effect
|
|
-----------------------------------
|
|
---@type TItem
|
|
local itemObject = {}
|
|
|
|
itemObject.onItemCheck = function(target, item, caster)
|
|
return xi.salvage.onCellItemCheck(target, xi.effect.DEBILITATION, 0x002)
|
|
end
|
|
|
|
itemObject.onItemUse = function(target)
|
|
return xi.salvage.onCellItemUse(target, xi.effect.DEBILITATION, 0x002, 12)
|
|
end
|
|
|
|
return itemObject
|