19 lines
654 B
Lua
19 lines
654 B
Lua
-----------------------------------
|
|
-- ID: 6174
|
|
-- Item: Beaming Score
|
|
-- A musical score composed by Lewenhart.
|
|
-- Its notes symbolize the gently glowing beams of light that filter through the leaves of a deciduous tree in the late afternoon.
|
|
-- Adventurers note that reading it increases one's wind instrument skill.
|
|
-----------------------------------
|
|
---@type TItem
|
|
local itemObject = {}
|
|
|
|
itemObject.onItemCheck = function(target, item, caster)
|
|
return xi.itemUtils.skillBookCheck(target, xi.skill.WIND_INSTRUMENT)
|
|
end
|
|
|
|
itemObject.onItemUse = function(target)
|
|
xi.itemUtils.skillBookUse(target, xi.skill.WIND_INSTRUMENT)
|
|
end
|
|
|
|
return itemObject
|