Files
minecraft-bedrock-json-schemas/behaviour/recipes/recipes.json

33 lines
786 B
JSON
Raw Normal View History

2020-11-01 17:22:42 +01:00
{
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "blockception.minecraft.behaviour.recipes",
2020-11-17 09:56:41 +01:00
"examples": [
{
"format_version": "1.12.0",
"minecraft:recipe_shaped": {
"description": {
"identifier": "minecraft:item"
},
2020-11-17 21:19:54 +01:00
"tags": ["crafting_table"],
"pattern": [],
"key": {},
2020-11-17 09:56:41 +01:00
"result": {
"item": "minecraft:boat",
"data": 4
}
2020-11-17 21:19:54 +01:00
}
}
2020-11-17 09:56:41 +01:00
],
2020-11-01 17:22:42 +01:00
"allOf": [
{
"if": { "properties": { "format_version": { "type": "string", "const": "1.12" } } },
"then": { "$ref": "1.12.0/recipes.json" }
},
{
"if": { "properties": { "format_version": { "type": "string", "const": "1.12.0" } } },
"then": { "$ref": "1.12.0/recipes.json" }
}
]
}