landsandboat/scripts/items/scroll_of_shell_v.lua

17 lines
402 B
Lua

-----------------------------------
-- ID: 4660
-- Scroll of Shell V
-- Teaches the white magic Shell V
-----------------------------------
---@type TItem
local itemObject = {}
itemObject.onItemCheck = function(target, item, caster)
return target:canLearnSpell(xi.magic.spell.SHELL_V)
end
itemObject.onItemUse = function(target)
target:addSpell(xi.magic.spell.SHELL_V)
end
return itemObject