landsandboat/scripts/items/scroll_of_shell.lua

17 lines
394 B
Lua

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