landsandboat/scripts/items/scroll_of_dia_ex.lua

17 lines
398 B
Lua

-----------------------------------
-- ID: 4606
-- Scroll of Dia (Exclusive)
-- 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