Add minecraft bedrock server

This commit is contained in:
2024-09-09 13:28:08 -03:00
parent 54e5f3000c
commit 236b4b2960
4640 changed files with 688839 additions and 66 deletions

View File

@ -0,0 +1,25 @@
{
"format_version": "1.14",
"minecraft:recipe_shaped": {
"description": {
"identifier": "minecraft:beehive"
},
"tags": [ "crafting_table" ],
"pattern": [
"###",
"ooo",
"###"
],
"key": {
"#": {
"item": "minecraft:planks"
},
"o": {
"item": "minecraft:honeycomb"
}
},
"result": [
{ "item": "minecraft:beehive" }
]
}
}

View File

@ -0,0 +1,23 @@
{
"format_version": "1.12",
"minecraft:recipe_shaped": {
"description": {
"identifier": "minecraft:honey_block"
},
"tags": [ "crafting_table" ],
"pattern": [
"XX",
"XX"
],
"key": {
"X": {
"item": "minecraft:honey_bottle"
}
},
"result": [
{ "item": "minecraft:honey_block" },
{ "item": "minecraft:glass_bottle", "count": 4, "data": 0 }
]
}
}

View File

@ -0,0 +1,31 @@
{
"format_version": "1.12",
"minecraft:recipe_shapeless": {
"description": {
"identifier": "minecraft:honey_bottle"
},
"tags": [ "crafting_table" ],
"ingredients": [
{
"item": "minecraft:honey_block"
},
{
"item": "minecraft:glass_bottle"
},
{
"item": "minecraft:glass_bottle"
},
{
"item": "minecraft:glass_bottle"
},
{
"item": "minecraft:glass_bottle"
}
],
"result": {
"item": "minecraft:honey_bottle",
"count": 4
}
}
}

View File

@ -0,0 +1,21 @@
{
"format_version": "1.14",
"minecraft:recipe_shaped": {
"description": {
"identifier": "minecraft:honey_bottle_to_sugar"
},
"tags": [ "crafting_table" ],
"pattern": [
"#"
],
"key": {
"#": {
"item": "minecraft:honey_bottle"
}
},
"result": [
{ "item": "minecraft:sugar", "count": 3 },
{ "item": "minecraft:glass_bottle", "count": 1 }
]
}
}

View File

@ -0,0 +1,22 @@
{
"format_version": "1.12",
"minecraft:recipe_shaped": {
"description": {
"identifier": "minecraft:honeycomb_block"
},
"tags": [ "crafting_table" ],
"pattern": [
"XX",
"XX"
],
"key": {
"X": {
"item": "minecraft:honeycomb"
}
},
"result": [
{ "item": "minecraft:honeycomb_block" }
]
}
}