17 lines
443 B
Lua
17 lines
443 B
Lua
-----------------------------------
|
|
-- Humilus Cell
|
|
-- ID 5383
|
|
-- Removes HP Down effect
|
|
-----------------------------------
|
|
---@type TItem
|
|
local itemObject = {}
|
|
|
|
itemObject.onItemCheck = function(target, item, caster)
|
|
return xi.salvage.onCellItemCheck(target, xi.effect.DEBILITATION, 0x080)
|
|
end
|
|
|
|
itemObject.onItemUse = function(target)
|
|
return xi.salvage.onCellItemUse(target, xi.effect.DEBILITATION, 0x080, 18)
|
|
end
|
|
|
|
return itemObject
|