landsandboat/scripts/items/scroll_of_sleep_ii.lua

17 lines
406 B
Lua

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