landsandboat/scripts/items/scroll_of_hojo_ni.lua

17 lines
401 B
Lua

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