20 lines
477 B
Lua
20 lines
477 B
Lua
-----------------------------------
|
|
-- ID: 5988
|
|
-- Scroll of Instant Protect
|
|
-- Grants the effect of Protect
|
|
-----------------------------------
|
|
---@type TItem
|
|
local itemObject = {}
|
|
|
|
itemObject.onItemCheck = function(target, item, caster)
|
|
return 0
|
|
end
|
|
|
|
itemObject.onItemUse = function(target, user)
|
|
local power = 75
|
|
local duration = 1800
|
|
|
|
target:addStatusEffect(xi.effect.PROTECT, { power = power, duration = duration, origin = user })
|
|
end
|
|
|
|
return itemObject
|