landsandboat/scripts/items/scroll_of_gravity.lua

18 lines
402 B
Lua
Raw Permalink Normal View History

2021-01-18 12:51:02 -05:00
-----------------------------------
2016-10-13 23:04:58 -04:00
-- ID: 4824
-- Scroll of Gravity
-- Teaches the black magic Gravity
2021-01-18 12:51:02 -05:00
-----------------------------------
---@type TItem
local itemObject = {}
2016-01-16 01:26:33 -05:00
itemObject.onItemCheck = function(target, item, caster)
return target:canLearnSpell(xi.magic.spell.GRAVITY)
end
2016-01-16 01:26:33 -05:00
itemObject.onItemUse = function(target)
target:addSpell(xi.magic.spell.GRAVITY)
end
2021-01-17 11:55:03 -05:00
return itemObject