17 lines
402 B
Lua
17 lines
402 B
Lua
-----------------------------------
|
|
-- ID: 4753
|
|
-- Scroll of Fire II
|
|
-- Teaches the black magic Fire II
|
|
-----------------------------------
|
|
---@type TItem
|
|
local itemObject = {}
|
|
|
|
itemObject.onItemCheck = function(target, item, caster)
|
|
return target:canLearnSpell(xi.magic.spell.FIRE_II)
|
|
end
|
|
|
|
itemObject.onItemUse = function(target)
|
|
target:addSpell(xi.magic.spell.FIRE_II)
|
|
end
|
|
|
|
return itemObject
|