35 lines
1.1 KiB
Lua
35 lines
1.1 KiB
Lua
-----------------------------------
|
|
-- ID: 15596
|
|
-- Item: Hydra Tights
|
|
-- Item Effect: 10% haste
|
|
-- Duration: 3 minutes
|
|
-----------------------------------
|
|
---@type TItem
|
|
local itemObject = {}
|
|
|
|
itemObject.onItemCheck = function(target, user)
|
|
if target:getStatusEffectBySource(xi.effect.HASTE, xi.effectSourceType.EQUIPPED_ITEM, xi.item.HYDRA_TIGHTS) ~= nil then
|
|
target:delStatusEffect(xi.effect.HASTE, nil, xi.effectSourceType.EQUIPPED_ITEM, xi.item.HYDRA_TIGHTS)
|
|
end
|
|
|
|
return 0
|
|
end
|
|
|
|
itemObject.onItemUse = function(target, user)
|
|
if target:hasEquipped(xi.item.HYDRA_TIGHTS) then
|
|
if not target:hasStatusEffect(xi.effect.HASTE) then
|
|
target:addStatusEffect(xi.effect.HASTE, { duration = 180, origin = user, sourceType = xi.effectSourceType.EQUIPPED_ITEM, sourceTypeParam = xi.item.HYDRA_TIGHTS })
|
|
else
|
|
target:messageBasic(xi.msg.basic.NO_EFFECT)
|
|
end
|
|
end
|
|
end
|
|
|
|
itemObject.onEffectGain = function(target, effect)
|
|
effect:addMod(xi.mod.HASTE_MAGIC, 1000)
|
|
end
|
|
|
|
itemObject.onEffectLose = function(target, effect)
|
|
end
|
|
|
|
return itemObject
|