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