24 lines
733 B
Lua
24 lines
733 B
Lua
-----------------------------------
|
|
-- ID: 5255
|
|
-- Item: Hermes Quencher
|
|
-- Item Effect: Flee for 30 seconds
|
|
-----------------------------------
|
|
---@type TItem
|
|
local itemObject = {}
|
|
|
|
itemObject.onItemCheck = function(target, item, caster)
|
|
if target:hasStatusEffect(xi.effect.MEDICINE) then
|
|
return xi.msg.basic.ITEM_NO_USE_MEDICATED
|
|
end
|
|
|
|
return 0
|
|
end
|
|
|
|
itemObject.onItemUse = function(target, user)
|
|
target:delStatusEffect(xi.effect.FLEE)
|
|
target:addStatusEffect(xi.effect.FLEE, { power = 8750, duration = 30, origin = user })
|
|
target:messageBasic(xi.msg.basic.GAINS_EFFECT_OF_STATUS, xi.effect.FLEE)
|
|
target:addStatusEffect(xi.effect.MEDICINE, { duration = 900, origin = user })
|
|
end
|
|
|
|
return itemObject
|