landsandboat/scripts/items/scroll_of_reraise_ii.lua

17 lines
414 B
Lua

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