landsandboat/scripts/items/scroll_of_bio.lua

17 lines
386 B
Lua

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