landsandboat/scripts/items/scroll_of_blindna.lua

17 lines
402 B
Lua

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