From 60c43b93da46ccb13ea4b720b92f6c5d0a2f05af Mon Sep 17 00:00:00 2001 From: Andrew-71 Date: Sun, 28 Apr 2024 23:00:32 +0300 Subject: [PATCH] Rebalance concrete recipes --- .../generated/data/new_soviet/recipes/beige_concrete.json | 4 ++-- .../generated/data/new_soviet/recipes/blue_concrete.json | 4 ++-- src/main/generated/data/new_soviet/recipes/concrete.json | 4 ++-- .../data/new_soviet/recipes/dark_green_concrete.json | 4 ++-- .../generated/data/new_soviet/recipes/green_concrete.json | 4 ++-- .../data/new_soviet/recipes/orange_concrete.json | 4 ++-- .../generated/data/new_soviet/recipes/red_concrete.json | 4 ++-- .../generated/data/new_soviet/recipes/white_concrete.json | 4 ++-- .../data/new_soviet/recipes/yellow_concrete.json | 4 ++-- .../java/su/a71/new_soviet/datagen/RecipeGenerator.java | 8 ++++---- 10 files changed, 22 insertions(+), 22 deletions(-) diff --git a/src/main/generated/data/new_soviet/recipes/beige_concrete.json b/src/main/generated/data/new_soviet/recipes/beige_concrete.json index 1d5e378..ea3d57c 100644 --- a/src/main/generated/data/new_soviet/recipes/beige_concrete.json +++ b/src/main/generated/data/new_soviet/recipes/beige_concrete.json @@ -14,11 +14,11 @@ }, "pattern": [ "SBS", - " D ", + "SDS", "SBS" ], "result": { - "count": 6, + "count": 9, "item": "new_soviet:beige_concrete" }, "show_notification": true diff --git a/src/main/generated/data/new_soviet/recipes/blue_concrete.json b/src/main/generated/data/new_soviet/recipes/blue_concrete.json index 44284c8..e083f4d 100644 --- a/src/main/generated/data/new_soviet/recipes/blue_concrete.json +++ b/src/main/generated/data/new_soviet/recipes/blue_concrete.json @@ -14,11 +14,11 @@ }, "pattern": [ "SBS", - " D ", + "SDS", "SBS" ], "result": { - "count": 6, + "count": 9, "item": "new_soviet:blue_concrete" }, "show_notification": true diff --git a/src/main/generated/data/new_soviet/recipes/concrete.json b/src/main/generated/data/new_soviet/recipes/concrete.json index cb5995c..7bb445a 100644 --- a/src/main/generated/data/new_soviet/recipes/concrete.json +++ b/src/main/generated/data/new_soviet/recipes/concrete.json @@ -11,11 +11,11 @@ }, "pattern": [ "SBS", - " B ", + "SBS", "SBS" ], "result": { - "count": 8, + "count": 9, "item": "new_soviet:concrete" }, "show_notification": true diff --git a/src/main/generated/data/new_soviet/recipes/dark_green_concrete.json b/src/main/generated/data/new_soviet/recipes/dark_green_concrete.json index 53a20b7..6bfed64 100644 --- a/src/main/generated/data/new_soviet/recipes/dark_green_concrete.json +++ b/src/main/generated/data/new_soviet/recipes/dark_green_concrete.json @@ -14,11 +14,11 @@ }, "pattern": [ "SBS", - " D ", + "SDS", "SBS" ], "result": { - "count": 6, + "count": 9, "item": "new_soviet:dark_green_concrete" }, "show_notification": true diff --git a/src/main/generated/data/new_soviet/recipes/green_concrete.json b/src/main/generated/data/new_soviet/recipes/green_concrete.json index aa5b696..171d1b4 100644 --- a/src/main/generated/data/new_soviet/recipes/green_concrete.json +++ b/src/main/generated/data/new_soviet/recipes/green_concrete.json @@ -14,11 +14,11 @@ }, "pattern": [ "SBS", - " D ", + "SDS", "SBS" ], "result": { - "count": 6, + "count": 9, "item": "new_soviet:green_concrete" }, "show_notification": true diff --git a/src/main/generated/data/new_soviet/recipes/orange_concrete.json b/src/main/generated/data/new_soviet/recipes/orange_concrete.json index 581d0b5..39c5cf9 100644 --- a/src/main/generated/data/new_soviet/recipes/orange_concrete.json +++ b/src/main/generated/data/new_soviet/recipes/orange_concrete.json @@ -14,11 +14,11 @@ }, "pattern": [ "SBS", - " D ", + "SDS", "SBS" ], "result": { - "count": 6, + "count": 9, "item": "new_soviet:orange_concrete" }, "show_notification": true diff --git a/src/main/generated/data/new_soviet/recipes/red_concrete.json b/src/main/generated/data/new_soviet/recipes/red_concrete.json index eec6ca6..9a31890 100644 --- a/src/main/generated/data/new_soviet/recipes/red_concrete.json +++ b/src/main/generated/data/new_soviet/recipes/red_concrete.json @@ -14,11 +14,11 @@ }, "pattern": [ "SBS", - " D ", + "SDS", "SBS" ], "result": { - "count": 6, + "count": 9, "item": "new_soviet:red_concrete" }, "show_notification": true diff --git a/src/main/generated/data/new_soviet/recipes/white_concrete.json b/src/main/generated/data/new_soviet/recipes/white_concrete.json index bafd59e..a3f4edd 100644 --- a/src/main/generated/data/new_soviet/recipes/white_concrete.json +++ b/src/main/generated/data/new_soviet/recipes/white_concrete.json @@ -14,11 +14,11 @@ }, "pattern": [ "SBS", - " D ", + "SDS", "SBS" ], "result": { - "count": 6, + "count": 9, "item": "new_soviet:white_concrete" }, "show_notification": true diff --git a/src/main/generated/data/new_soviet/recipes/yellow_concrete.json b/src/main/generated/data/new_soviet/recipes/yellow_concrete.json index e0e6666..3d99a20 100644 --- a/src/main/generated/data/new_soviet/recipes/yellow_concrete.json +++ b/src/main/generated/data/new_soviet/recipes/yellow_concrete.json @@ -14,11 +14,11 @@ }, "pattern": [ "SBS", - " D ", + "SDS", "SBS" ], "result": { - "count": 6, + "count": 9, "item": "new_soviet:yellow_concrete" }, "show_notification": true diff --git a/src/main/java/su/a71/new_soviet/datagen/RecipeGenerator.java b/src/main/java/su/a71/new_soviet/datagen/RecipeGenerator.java index 2b30d4f..7973ad6 100644 --- a/src/main/java/su/a71/new_soviet/datagen/RecipeGenerator.java +++ b/src/main/java/su/a71/new_soviet/datagen/RecipeGenerator.java @@ -128,20 +128,20 @@ public class RecipeGenerator extends FabricRecipeProvider { private void concreteRecipe(Consumer exporter, ItemConvertible output, ItemConvertible dye) { if (dye == null) { // Base concrete gives 2 more but requires an extra iron bar - ShapedRecipeJsonBuilder.create(RecipeCategory.BUILDING_BLOCKS, output, 8) + ShapedRecipeJsonBuilder.create(RecipeCategory.BUILDING_BLOCKS, output, 9) .input('B', Blocks.IRON_BARS).input('S', Blocks.STONE) .pattern("SBS") - .pattern(" B ") + .pattern("SBS") .pattern("SBS") .criterion(hasItem(Blocks.IRON_BARS), conditionsFromItem(Blocks.IRON_BARS)) .criterion(hasItem(Blocks.STONE), conditionsFromItem(Blocks.STONE)) .offerTo(exporter); return; } - ShapedRecipeJsonBuilder.create(RecipeCategory.BUILDING_BLOCKS, output, 6) + ShapedRecipeJsonBuilder.create(RecipeCategory.BUILDING_BLOCKS, output, 9) .input('D', dye).input('B', Blocks.IRON_BARS).input('S', Blocks.STONE) .pattern("SBS") - .pattern(" D ") + .pattern("SDS") .pattern("SBS") .criterion(hasItem(dye), conditionsFromItem(dye)) .criterion(hasItem(Blocks.IRON_BARS), conditionsFromItem(Blocks.IRON_BARS))