17 lines
449 B
Lua
17 lines
449 B
Lua
-----------------------------------
|
|
-- Incus Cell
|
|
-- ID 5365
|
|
-- Unlocks weapons and shields
|
|
-----------------------------------
|
|
---@type TItem
|
|
local itemObject = {}
|
|
|
|
itemObject.onItemCheck = function(target, item, caster)
|
|
return xi.salvage.onCellItemCheck(target, xi.effect.ENCUMBRANCE_I, 0x0003)
|
|
end
|
|
|
|
itemObject.onItemUse = function(target)
|
|
return xi.salvage.onCellItemUse(target, xi.effect.ENCUMBRANCE_I, 0x0003, 0)
|
|
end
|
|
|
|
return itemObject
|