From e8df077d706f67deda7cd2d23690fe230cd51382 Mon Sep 17 00:00:00 2001 From: Mrbysco Date: Sat, 9 Mar 2024 22:59:45 +0100 Subject: [PATCH] Add missing Black Quartz block recipes --- .../9fb1092f32d4fcbf9e061ffd718d4ec689c6c95e | 5 ++++- .../recipes/black_quartz_block.json | 16 ++++++++++++++++ .../recipes/black_quartz_pillar_block.json | 16 ++++++++++++++++ .../recipes/chiseled_black_quartz_block.json | 17 +++++++++++++++++ .../data/BlockRecipeGenerator.java | 18 ++++++++++++++++++ 5 files changed, 71 insertions(+), 1 deletion(-) create mode 100644 src/generated/resources/data/actuallyadditions/recipes/black_quartz_block.json create mode 100644 src/generated/resources/data/actuallyadditions/recipes/black_quartz_pillar_block.json create mode 100644 src/generated/resources/data/actuallyadditions/recipes/chiseled_black_quartz_block.json diff --git a/src/generated/resources/.cache/9fb1092f32d4fcbf9e061ffd718d4ec689c6c95e b/src/generated/resources/.cache/9fb1092f32d4fcbf9e061ffd718d4ec689c6c95e index eb2f38d18..a0058e26b 100644 --- a/src/generated/resources/.cache/9fb1092f32d4fcbf9e061ffd718d4ec689c6c95e +++ b/src/generated/resources/.cache/9fb1092f32d4fcbf9e061ffd718d4ec689c6c95e @@ -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 diff --git a/src/generated/resources/data/actuallyadditions/recipes/black_quartz_block.json b/src/generated/resources/data/actuallyadditions/recipes/black_quartz_block.json new file mode 100644 index 000000000..76119eb5e --- /dev/null +++ b/src/generated/resources/data/actuallyadditions/recipes/black_quartz_block.json @@ -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" + } +} \ No newline at end of file diff --git a/src/generated/resources/data/actuallyadditions/recipes/black_quartz_pillar_block.json b/src/generated/resources/data/actuallyadditions/recipes/black_quartz_pillar_block.json new file mode 100644 index 000000000..f036d1d9b --- /dev/null +++ b/src/generated/resources/data/actuallyadditions/recipes/black_quartz_pillar_block.json @@ -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" + } +} \ No newline at end of file diff --git a/src/generated/resources/data/actuallyadditions/recipes/chiseled_black_quartz_block.json b/src/generated/resources/data/actuallyadditions/recipes/chiseled_black_quartz_block.json new file mode 100644 index 000000000..aa1f17328 --- /dev/null +++ b/src/generated/resources/data/actuallyadditions/recipes/chiseled_black_quartz_block.json @@ -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" + } +} \ No newline at end of file diff --git a/src/main/java/de/ellpeck/actuallyadditions/data/BlockRecipeGenerator.java b/src/main/java/de/ellpeck/actuallyadditions/data/BlockRecipeGenerator.java index 4dbebc5a7..3d60c1d90 100644 --- a/src/main/java/de/ellpeck/actuallyadditions/data/BlockRecipeGenerator.java +++ b/src/main/java/de/ellpeck/actuallyadditions/data/BlockRecipeGenerator.java @@ -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 {