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