landsandboat/scripts/items/scroll_of_protectra_iv.lua

17 lines
422 B
Lua

-----------------------------------
-- ID: 4736
-- Scroll of Protectra IV
-- Teaches the white magic Protectra IV
-----------------------------------
---@type TItem
local itemObject = {}
itemObject.onItemCheck = function(target, item, caster)
return target:canLearnSpell(xi.magic.spell.PROTECTRA_IV)
end
itemObject.onItemUse = function(target)
target:addSpell(xi.magic.spell.PROTECTRA_IV)
end
return itemObject