landsandboat/scripts/items/scroll_of_watera_ii.lua

17 lines
410 B
Lua

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