landsandboat/scripts/items/pyrohelix_schema.lua

17 lines
407 B
Lua

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