19 lines
533 B
Lua
19 lines
533 B
Lua
-----------------------------------
|
|
-- ID: 4173
|
|
-- Item: Hi-Reraiser
|
|
-- Item Effect: This potion functions inthe same way as the spell Reraise II.
|
|
-----------------------------------
|
|
---@type TItem
|
|
local itemObject = {}
|
|
|
|
itemObject.onItemCheck = function(target, item, caster)
|
|
return 0
|
|
end
|
|
|
|
itemObject.onItemUse = function(target, user)
|
|
local duration = 5400
|
|
target:delStatusEffect(xi.effect.RERAISE)
|
|
target:addStatusEffect(xi.effect.RERAISE, { power = 2, duration = duration, origin = user })
|
|
end
|
|
|
|
return itemObject
|