* update loot table schemas * remove entity_properties and use new int_or_range definition * remove entity_properties from conditions.json as well
126 lines
3.8 KiB
JSON
126 lines
3.8 KiB
JSON
{
|
|
"$id": "blockception.minecraft.behavior.condition.match_tool",
|
|
"type": "object",
|
|
"additionalProperties": false,
|
|
"description": "Returns the condition true if the block of the loot table was broken with a specific item.",
|
|
"title": "Match Tool",
|
|
"required": ["condition"],
|
|
"properties": {
|
|
"condition": { "type": "string", "const": "match_tool", "title": "Condition", "description": "UNDOCUMENTED.", "$comment": "UNDOCUMENTED" },
|
|
"item": {
|
|
"description": "The item to match",
|
|
"$ref": "../../../general/item/identifier.json"
|
|
},
|
|
"count": {
|
|
"title": "Count",
|
|
"description": "Minimum count to match of the given item",
|
|
"$ref": "../../../general/int_or_range.json"
|
|
},
|
|
"durability": {
|
|
"title": "Durability",
|
|
"description": "Minimum durability to match of the given item",
|
|
"$ref": "../../../general/int_or_range.json"
|
|
},
|
|
"enchantments": {
|
|
"title": "Enchantments",
|
|
"description": "List of enchantments to check for",
|
|
"type": "array",
|
|
"items": {
|
|
"type": "object",
|
|
"required": ["enchantment"],
|
|
"properties": {
|
|
"enchantment": {
|
|
"title": "Enchantment",
|
|
"description": "The enchantment ID to check for",
|
|
"type": "string",
|
|
"enum": [
|
|
"protection",
|
|
"fire_protection",
|
|
"feather_falling",
|
|
"blast_protection",
|
|
"projectile_protection",
|
|
"thorns",
|
|
"respiration",
|
|
"depth_strider",
|
|
"aqua_affinity",
|
|
"sharpness",
|
|
"smite",
|
|
"bane_of_arthropods",
|
|
"knockback",
|
|
"fire_aspect",
|
|
"looting",
|
|
"efficiency",
|
|
"silk_touch",
|
|
"unbreaking",
|
|
"fortune",
|
|
"power",
|
|
"punch",
|
|
"flame",
|
|
"infinity",
|
|
"luck_of_the_sea",
|
|
"lure",
|
|
"frost_walker",
|
|
"mending",
|
|
"binding",
|
|
"vanishing",
|
|
"impaling",
|
|
"riptide",
|
|
"loyalty",
|
|
"channeling",
|
|
"multishot",
|
|
"piercing",
|
|
"quick_charge",
|
|
"soul_speed",
|
|
"swift_sneak",
|
|
"wind_burst",
|
|
"density",
|
|
"breach"
|
|
]
|
|
},
|
|
"levels": {
|
|
"title": "Levels",
|
|
"description": "The level of the enchantment",
|
|
"type": "object",
|
|
"properties": {
|
|
"range_min": {
|
|
"title": "Minimum",
|
|
"description": "The minimum level of the enchantment",
|
|
"type": "integer"
|
|
},
|
|
"range_max": {
|
|
"title": "Maximum",
|
|
"description": "The maximum level of the enchantment",
|
|
"type": "integer"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"minecraft:match_tool_filter_all": {
|
|
"title": "Match Tool Filter All",
|
|
"description": "List of tags the item must have",
|
|
"type": "array",
|
|
"items": {
|
|
"type": "string"
|
|
}
|
|
},
|
|
"minecraft:match_tool_filter_none": {
|
|
"title": "Match Tool Filter None",
|
|
"description": "List of tags the item must NOT have",
|
|
"type": "array",
|
|
"items": {
|
|
"type": "string"
|
|
}
|
|
},
|
|
"minecraft:match_tool_filter_any": {
|
|
"title": "Match Tool Filter Any",
|
|
"description": "List of tags the item must have at least one of",
|
|
"type": "array",
|
|
"items": {
|
|
"type": "string"
|
|
}
|
|
}
|
|
}
|
|
}
|