19 lines
525 B
Lua
19 lines
525 B
Lua
-----------------------------------
|
|
-- ID: 16012
|
|
-- Mamool Ja Earring
|
|
-- This earring functions in the same way as the spell Reraise III.
|
|
-----------------------------------
|
|
---@type TItem
|
|
local itemObject = {}
|
|
|
|
itemObject.onItemCheck = function(target, item, caster)
|
|
return 0
|
|
end
|
|
|
|
itemObject.onItemUse = function(target, user)
|
|
local duration = 3600
|
|
target:delStatusEffect(xi.effect.RERAISE)
|
|
target:addStatusEffect(xi.effect.RERAISE, { power = 3, duration = duration, origin = user })
|
|
end
|
|
|
|
return itemObject
|