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