landsandboat/scripts/items/scroll_of_quake.lua

17 lines
394 B
Lua

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