17 lines
417 B
Lua
17 lines
417 B
Lua
-----------------------------------
|
|
-- ID: 4947
|
|
-- Scroll of Utsusemi: Ni
|
|
-- Teaches the ninjutsu Utsusemi: Ni
|
|
-----------------------------------
|
|
---@type TItem
|
|
local itemObject = {}
|
|
|
|
itemObject.onItemCheck = function(target, item, caster)
|
|
return target:canLearnSpell(xi.magic.spell.UTSUSEMI_NI)
|
|
end
|
|
|
|
itemObject.onItemUse = function(target)
|
|
target:addSpell(xi.magic.spell.UTSUSEMI_NI)
|
|
end
|
|
|
|
return itemObject
|