landsandboat/scripts/items/scroll_of_burst_ii.lua

17 lines
406 B
Lua

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