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