landsandboat/scripts/items/scroll_of_enwater.lua

17 lines
402 B
Lua

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