landsandboat/scripts/items/scroll_of_doton_ichi.lua

17 lines
413 B
Lua

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