landsandboat/scripts/items/scroll_of_aero_ii.lua

17 lines
402 B
Lua

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