landsandboat/scripts/items/scroll_of_thunder_iii.lua

17 lines
418 B
Lua

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