landsandboat/scripts/items/scroll_of_rasp.lua

17 lines
390 B
Lua

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