19 lines
648 B
Lua
19 lines
648 B
Lua
-----------------------------------
|
|
-- ID: 6169
|
|
-- Item: Inv. Report
|
|
-- A collection of observations made by Rainemard on a particular exploration.
|
|
-- It goes into such detail on so much minutiae that many admit to never finishing it.
|
|
-- Adventurers note that reading it increases one's enfeebling magic skill.
|
|
-----------------------------------
|
|
---@type TItem
|
|
local itemObject = {}
|
|
|
|
itemObject.onItemCheck = function(target, item, caster)
|
|
return xi.itemUtils.skillBookCheck(target, xi.skill.ENFEEBLING_MAGIC)
|
|
end
|
|
|
|
itemObject.onItemUse = function(target)
|
|
xi.itemUtils.skillBookUse(target, xi.skill.ENFEEBLING_MAGIC)
|
|
end
|
|
|
|
return itemObject
|