landsandboat/scripts/items/ionohelix_schema.lua

17 lines
407 B
Lua

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