landsandboat/scripts/items/windstorm_schema.lua

17 lines
407 B
Lua

-----------------------------------
-- ID: 6054
-- Windstorm Schema
-- Teaches the white magic Windstorm
-----------------------------------
---@type TItem
local itemObject = {}
itemObject.onItemCheck = function(target, item, caster)
return target:canLearnSpell(xi.magic.spell.WINDSTORM)
end
itemObject.onItemUse = function(target)
target:addSpell(xi.magic.spell.WINDSTORM)
end
return itemObject