landsandboat/scripts/items/hydrohelix_schema.lua

17 lines
411 B
Lua

-----------------------------------
-- ID: 6042
-- Hydrohelix Schema
-- Teaches the black magic Hydrohelix
-----------------------------------
---@type TItem
local itemObject = {}
itemObject.onItemCheck = function(target, item, caster)
return target:canLearnSpell(xi.magic.spell.HYDROHELIX)
end
itemObject.onItemUse = function(target)
target:addSpell(xi.magic.spell.HYDROHELIX)
end
return itemObject