17 lines
440 B
Lua
17 lines
440 B
Lua
-----------------------------------
|
|
-- Nimbus Cell
|
|
-- 5379
|
|
-- Removes AGI Down effect
|
|
-----------------------------------
|
|
---@type TItem
|
|
local itemObject = {}
|
|
|
|
itemObject.onItemCheck = function(target, item, caster)
|
|
return xi.salvage.onCellItemCheck(target, xi.effect.DEBILITATION, 0x008)
|
|
end
|
|
|
|
itemObject.onItemUse = function(target)
|
|
return xi.salvage.onCellItemUse(target, xi.effect.DEBILITATION, 0x008, 14)
|
|
end
|
|
|
|
return itemObject
|