Files
minecraft-bedrock-json-schemas/source/behavior/loot_tables/functions/enchant_with_levels.json
2021-05-26 01:23:51 +02:00

24 lines
843 B
JSON

{
"$id": "blockception.minecraft.behavior.loot_tables.enchant_with_levels",
"additionalProperties": false,
"description": "The function enchant_with_levels",
"title": "Enchant With Levels",
"properties": {
"function": { "type": "string", "const": "enchant_with_levels", "description": "TODO description", "title": "TODO Title" },
"levels": {
"title": "Levels",
"oneOf": [
{ "type": "integer" },
{
"type": "object",
"additionalProperties": false,
"required": ["min", "max"],
"properties": { "min": { "type": "integer", "title": "Minimum" }, "max": { "type": "integer", "title": "Maximum" } }
}
],
"description": "TODO description"
},
"treasure": { "type": "boolean", "title": "Treasure", "description": "TODO description" }
}
}