landsandboat/scripts/items/scroll_of_enthunder.lua

17 lines
410 B
Lua

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