landsandboat/scripts/items/scroll_of_sleep.lua

17 lines
394 B
Lua

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