17 lines
425 B
Lua
17 lines
425 B
Lua
-----------------------------------
|
|
-- ID: 6060
|
|
-- Item: Animus Minuo Schema
|
|
-- Teaches the white magic Animus Minuo
|
|
-----------------------------------
|
|
---@type TItem
|
|
local itemObject = {}
|
|
|
|
itemObject.onItemCheck = function(target, item, caster)
|
|
return target:canLearnSpell(xi.magic.spell.ANIMUS_MINUO)
|
|
end
|
|
|
|
itemObject.onItemUse = function(target)
|
|
target:addSpell(xi.magic.spell.ANIMUS_MINUO)
|
|
end
|
|
|
|
return itemObject
|