landsandboat/scripts/items/scroll_of_protectra_ii.lua

17 lines
422 B
Lua

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