landsandboat/scripts/items/scroll_of_inundation.lua

17 lines
408 B
Lua

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