landsandboat/scripts/items/scroll_of_protectra.lua

17 lines
410 B
Lua

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