landsandboat/scripts/items/scroll_of_flash.lua

17 lines
394 B
Lua

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