landsandboat/scripts/items/scroll_of_boost-vit.lua

17 lines
410 B
Lua

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