landsandboat/scripts/items/hyper_potion.lua

25 lines
716 B
Lua
Raw Permalink Normal View History

2021-01-18 12:51:02 -05:00
-----------------------------------
2016-01-16 01:26:33 -05:00
-- ID: 5254
-- Item: Hyper-Potion
2017-11-11 00:34:58 -05:00
-- Item Effect: Restores 250 HP
2021-01-18 12:51:02 -05:00
-----------------------------------
---@type TItem
local itemObject = {}
2016-01-16 01:26:33 -05:00
itemObject.onItemCheck = function(target, item, caster)
if target:getHP() == target:getMaxHP() then
2021-04-01 15:10:15 -04:00
return xi.msg.basic.ITEM_UNABLE_TO_USE
elseif target:hasStatusEffect(xi.effect.MEDICINE) then
2021-04-01 15:10:15 -04:00
return xi.msg.basic.ITEM_NO_USE_MEDICATED
2017-01-04 20:52:03 -05:00
end
return 0
end
2016-01-16 01:26:33 -05:00
2026-02-19 22:48:02 -07:00
itemObject.onItemUse = function(target, user)
target:messageBasic(xi.msg.basic.RECOVERS_HP, 0, target:addHP(250 * xi.settings.main.ITEM_POWER))
2026-02-19 22:48:02 -07:00
target:addStatusEffect(xi.effect.MEDICINE, { duration = 300, origin = user })
end
2021-01-17 11:55:03 -05:00
return itemObject