landsandboat/scripts/items/scroll_of_raise_iii.lua

17 lines
409 B
Lua

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