landsandboat/scripts/items/scroll_of_dia.lua

17 lines
386 B
Lua

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