landsandboat/scripts/items/scroll_of_absorb-agi.lua

17 lines
414 B
Lua

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