landsandboat/scripts/items/scroll_of_yain_ichi.lua

17 lines
409 B
Lua

-----------------------------------
-- ID: 4971
-- Scroll of Yain: Ichi
-- Teaches the ninjutsu Yain: Ichi
-----------------------------------
---@type TItem
local itemObject = {}
itemObject.onItemCheck = function(target, item, caster)
return target:canLearnSpell(xi.magic.spell.YAIN_ICHI)
end
itemObject.onItemUse = function(target)
target:addSpell(xi.magic.spell.YAIN_ICHI)
end
return itemObject