landsandboat/scripts/items/scroll_of_gain-dex.lua

17 lines
406 B
Lua

-----------------------------------
-- ID: 5088
-- Scroll of Gain-DEX
-- Teaches the white magic Gain-DEX
-----------------------------------
---@type TItem
local itemObject = {}
itemObject.onItemCheck = function(target, item, caster)
return target:canLearnSpell(xi.magic.spell.GAIN_DEX)
end
itemObject.onItemUse = function(target)
target:addSpell(xi.magic.spell.GAIN_DEX)
end
return itemObject