landsandboat/scripts/items/scroll_of_holy.lua

17 lines
390 B
Lua

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