mirror of
https://github.com/guilhermewerner/tcc
synced 2025-06-17 07:25:14 +00:00
Add minecraft bedrock server
This commit is contained in:
25
servers/bedrock/behavior_packs/vanilla_1.14/recipes/beehive.json
vendored
Normal file
25
servers/bedrock/behavior_packs/vanilla_1.14/recipes/beehive.json
vendored
Normal 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" }
|
||||
]
|
||||
}
|
||||
}
|
23
servers/bedrock/behavior_packs/vanilla_1.14/recipes/honey_block.json
vendored
Normal file
23
servers/bedrock/behavior_packs/vanilla_1.14/recipes/honey_block.json
vendored
Normal 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 }
|
||||
]
|
||||
}
|
||||
}
|
31
servers/bedrock/behavior_packs/vanilla_1.14/recipes/honey_bottle.json
vendored
Normal file
31
servers/bedrock/behavior_packs/vanilla_1.14/recipes/honey_bottle.json
vendored
Normal 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
|
||||
}
|
||||
}
|
||||
}
|
21
servers/bedrock/behavior_packs/vanilla_1.14/recipes/honey_bottle_to_sugar.json
vendored
Normal file
21
servers/bedrock/behavior_packs/vanilla_1.14/recipes/honey_bottle_to_sugar.json
vendored
Normal 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 }
|
||||
]
|
||||
}
|
||||
}
|
22
servers/bedrock/behavior_packs/vanilla_1.14/recipes/honeycomb_block.json
vendored
Normal file
22
servers/bedrock/behavior_packs/vanilla_1.14/recipes/honeycomb_block.json
vendored
Normal 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" }
|
||||
]
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user