landsandboat/scripts/items/scroll_of_curaga_ii.lua

17 lines
410 B
Lua

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