landsandboat/scripts/items/scroll_of_barpetrify.lua

17 lines
414 B
Lua

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