23 lines
764 B
Lua
23 lines
764 B
Lua
-----------------------------------
|
|
-- ID: 13170
|
|
-- Item: Stoneskin Torque
|
|
-- Item Effect: Stoneskin
|
|
-----------------------------------
|
|
---@type TItem
|
|
local itemObject = {}
|
|
|
|
itemObject.onItemCheck = function(target, item, caster)
|
|
return 0
|
|
end
|
|
|
|
itemObject.onItemUse = function(target, user)
|
|
if target:hasEquipped(xi.item.STONESKIN_TORQUE) then
|
|
if target:addStatusEffect(xi.effect.STONESKIN, { power = 104, duration = 300, origin = user, tier = 4, sourceType = xi.effectSourceType.EQUIPPED_ITEM, sourceTypeParam = xi.item.STONESKIN_TORQUE }) then
|
|
target:messageBasic(xi.msg.basic.GAINS_EFFECT_OF_STATUS, xi.effect.STONESKIN)
|
|
else
|
|
target:messageBasic(xi.msg.basic.NO_EFFECT)
|
|
end
|
|
end
|
|
end
|
|
|
|
return itemObject
|