19 lines
574 B
Lua
19 lines
574 B
Lua
-----------------------------------
|
|
-- ID: 6162
|
|
-- Item: Mikhe's Note
|
|
-- A memo scrawled by Mikhe Aryohcha that matter-of-factly states,
|
|
-- "Just throw your guard up and it'll all work out."
|
|
-- Adventurers note that reading it increases one's guarding skill.
|
|
-----------------------------------
|
|
---@type TItem
|
|
local itemObject = {}
|
|
|
|
itemObject.onItemCheck = function(target, item, caster)
|
|
return xi.itemUtils.skillBookCheck(target, xi.skill.GUARD)
|
|
end
|
|
|
|
itemObject.onItemUse = function(target)
|
|
xi.itemUtils.skillBookUse(target, xi.skill.GUARD)
|
|
end
|
|
|
|
return itemObject
|