landsandboat/scripts/items/scroll_of_enthunder_ii.lua

17 lines
422 B
Lua

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