landsandboat/scripts/items/scroll_of_doton_ni.lua

17 lines
405 B
Lua

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