landsandboat/scripts/items/scroll_of_fire_iii.lua

17 lines
406 B
Lua

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