18 lines
407 B
Lua
18 lines
407 B
Lua
|
|
-----------------------------------
|
|
-- ID: 4891
|
|
-- Scroll of blizzaja
|
|
-- Teaches the black magic blizzaja
|
|
-----------------------------------
|
|
---@type TItem
|
|
local itemObject = {}
|
|
|
|
itemObject.onItemCheck = function(target, item, caster)
|
|
return target:canLearnSpell(xi.magic.spell.BLIZZAJA)
|
|
end
|
|
|
|
itemObject.onItemUse = function(target)
|
|
target:addSpell(xi.magic.spell.BLIZZAJA)
|
|
end
|
|
|
|
return itemObject
|