17 lines
417 B
Lua
17 lines
417 B
Lua
-----------------------------------
|
|
-- ID: 6046
|
|
-- Item: Anemohelix Schema
|
|
-- Teaches the black magic Anemohelix
|
|
-----------------------------------
|
|
---@type TItem
|
|
local itemObject = {}
|
|
|
|
itemObject.onItemCheck = function(target, item, caster)
|
|
return target:canLearnSpell(xi.magic.spell.ANEMOHELIX)
|
|
end
|
|
|
|
itemObject.onItemUse = function(target)
|
|
target:addSpell(xi.magic.spell.ANEMOHELIX)
|
|
end
|
|
|
|
return itemObject
|