landsandboat/scripts/items/scroll_of_huton_ni.lua

17 lines
405 B
Lua

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