landsandboat/scripts/items/scroll_of_aero_v.lua

17 lines
398 B
Lua

-----------------------------------
-- ID: 4766
-- Scroll of Aero V
-- Teaches the black magic Aero V
-----------------------------------
---@type TItem
local itemObject = {}
itemObject.onItemCheck = function(target, item, caster)
return target:canLearnSpell(xi.magic.spell.AERO_V)
end
itemObject.onItemUse = function(target)
target:addSpell(xi.magic.spell.AERO_V)
end
return itemObject