landsandboat/scripts/items/sandstorm_schema.lua

17 lines
407 B
Lua

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