landsandboat/scripts/items/scroll_of_gravity_ii.lua

17 lines
414 B
Lua

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