Condition checking multiple enchantments
I'm trying to make a check where it will only use a certain loot table, if none of the previous ones are present.
"conditions": [
{
"condition": "minecraft:inverted",
"term": {
"condition": "minecraft:match_tool",
"predicate": {
"predicates": {
"minecraft:enchantments": [
{
"enchantments": "#boc:exclusive_set/fishing",
"levels": {
"min": 1
}
}
]
}
}
}
}
],
Can I do it by referencing the exclusive set which contains a list of said enchantments?
Continue to help post