Add missing Black Quartz block recipes

This commit is contained in:
Mrbysco 2024-03-09 22:59:45 +01:00
parent 1d581fc120
commit e8df077d70
5 changed files with 71 additions and 1 deletions

View file

@ -1,9 +1,11 @@
// 1.20.4 2024-03-09T11:39:13.7182875 Recipes
// 1.20.4 2024-03-09T22:59:24.7798372 Recipes
4d3128b37a7153882a9324cda49b5069207561c5 data/actuallyadditions/recipes/atomic_reconstructor.json
b0367f5012651764931e8b8fd0c5bcca4e8614c0 data/actuallyadditions/recipes/battery_box.json
7e05cd54092b998dfdbd2221235dd52576ec79eb data/actuallyadditions/recipes/black_quartz_block.json
fe704716268e01ca8aeeb92196d9f660b9e08640 data/actuallyadditions/recipes/black_quartz_brick_slab.json
9780dfc94589fc5c804c0df86eddbb9db3f61c08 data/actuallyadditions/recipes/black_quartz_brick_stair.json
46e271d87a58b8a987f7fe6925dbdc32488c6e5e data/actuallyadditions/recipes/black_quartz_brick_wall.json
6f92d08292fb042bd11870b6d3aeeab93f5ce42f data/actuallyadditions/recipes/black_quartz_pillar_block.json
9be8bfd94ecfc3d6c5736cc6c0851eb96f6882c7 data/actuallyadditions/recipes/black_quartz_pillar_slab.json
94fbc239756c5f31bab123c4c61ef3eb71696ff5 data/actuallyadditions/recipes/black_quartz_pillar_stair.json
74181133544cfbdbef31494f415a80b1f8fc0079 data/actuallyadditions/recipes/black_quartz_pillar_wall.json
@ -12,6 +14,7 @@ db1978ab59369dd3c10e719073b7035acf33885c data/actuallyadditions/recipes/black_qu
45d174f07588603735ed38fe2eb162e160f91e56 data/actuallyadditions/recipes/black_quartz_wall.json
0049339d1c0c795190caa365564119bc0bc987e1 data/actuallyadditions/recipes/breaker.json
81f8a64300319fc07323ab81d1cc4f66cd6c9a45 data/actuallyadditions/recipes/canola_press.json
8802daf35cdc912a840e10081551de164f745b46 data/actuallyadditions/recipes/chiseled_black_quartz_block.json
86b8c5e857cf1b00e154b5f798a3e837e6a05333 data/actuallyadditions/recipes/chiseled_black_quartz_slab.json
506d2ad2f3109a6640a35ef1a2143b16793414ba data/actuallyadditions/recipes/chiseled_black_quartz_stair.json
2e9233449531a074984b443ceef0ad782f82eaed data/actuallyadditions/recipes/chiseled_black_quartz_wall.json

View file

@ -0,0 +1,16 @@
{
"type": "minecraft:crafting_shaped",
"category": "misc",
"key": {
"B": {
"item": "actuallyadditions:black_quartz"
}
},
"pattern": [
"BB",
"BB"
],
"result": {
"item": "actuallyadditions:black_quartz_block"
}
}

View file

@ -0,0 +1,16 @@
{
"type": "minecraft:crafting_shaped",
"category": "misc",
"key": {
"B": {
"item": "actuallyadditions:black_quartz"
}
},
"pattern": [
"B",
"B"
],
"result": {
"item": "actuallyadditions:black_quartz_pillar_block"
}
}

View file

@ -0,0 +1,17 @@
{
"type": "minecraft:crafting_shaped",
"category": "misc",
"key": {
"B": {
"item": "actuallyadditions:black_quartz_block"
}
},
"pattern": [
"B",
"B"
],
"result": {
"count": 2,
"item": "actuallyadditions:chiseled_black_quartz_block"
}
}

View file

@ -321,6 +321,24 @@ public class BlockRecipeGenerator extends RecipeProvider {
.define('S', ItemTags.SAPLINGS)
.define('E', ActuallyItems.EMPOWERED_PALIS_CRYSTAL)
.save(recipeOutput);
// Block of Black Quartz
Recipe.shaped(ActuallyBlocks.BLACK_QUARTZ.getItem())
.pattern("BB", "BB")
.define('B', ActuallyItems.BLACK_QUARTZ)
.save(recipeOutput);
// Pillar of Black Quartz
Recipe.shaped(ActuallyBlocks.BLACK_QUARTZ_PILLAR.getItem())
.pattern("B", "B")
.define('B', ActuallyItems.BLACK_QUARTZ)
.save(recipeOutput);
// Chiseled Block of Black Quartz
Recipe.shaped(ActuallyBlocks.CHISELED_BLACK_QUARTZ.getItem(), 2)
.pattern("B", "B")
.define('B', ActuallyBlocks.BLACK_QUARTZ.getItem())
.save(recipeOutput);
}
public static class Recipe {