17 lines
456 B
Lua
17 lines
456 B
Lua
-----------------------------------
|
|
-- Virga Cell
|
|
-- ID 5372
|
|
-- Unlocks earring and ring equipment
|
|
-----------------------------------
|
|
---@type TItem
|
|
local itemObject = {}
|
|
|
|
itemObject.onItemCheck = function(target, item, caster)
|
|
return xi.salvage.onCellItemCheck(target, xi.effect.ENCUMBRANCE_I, 0x7800)
|
|
end
|
|
|
|
itemObject.onItemUse = function(target)
|
|
return xi.salvage.onCellItemUse(target, xi.effect.ENCUMBRANCE_I, 0x7800, 7)
|
|
end
|
|
|
|
return itemObject
|