landsandboat/scripts/items/scroll_of_shellra_v.lua

17 lines
410 B
Lua

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