17 lines
422 B
Lua
17 lines
422 B
Lua
-----------------------------------
|
|
-- ID: 4698
|
|
-- Scroll of Barsilencera
|
|
-- Teaches the white magic Barsilencera
|
|
-----------------------------------
|
|
---@type TItem
|
|
local itemObject = {}
|
|
|
|
itemObject.onItemCheck = function(target, item, caster)
|
|
return target:canLearnSpell(xi.magic.spell.BARSILENCERA)
|
|
end
|
|
|
|
itemObject.onItemUse = function(target)
|
|
target:addSpell(xi.magic.spell.BARSILENCERA)
|
|
end
|
|
|
|
return itemObject
|