landsandboat/scripts/items/voidstorm_schema.lua

17 lines
407 B
Lua

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