diff --git a/src/datagen/groovy/techreborn/datagen/recipes/machine/industrial_grinder/IndustrialGrinderRecipesProvider.groovy b/src/datagen/groovy/techreborn/datagen/recipes/machine/industrial_grinder/IndustrialGrinderRecipesProvider.groovy index 9232ccb3f..2112ab6e2 100644 --- a/src/datagen/groovy/techreborn/datagen/recipes/machine/industrial_grinder/IndustrialGrinderRecipesProvider.groovy +++ b/src/datagen/groovy/techreborn/datagen/recipes/machine/industrial_grinder/IndustrialGrinderRecipesProvider.groovy @@ -410,7 +410,7 @@ class IndustrialGrinderRecipesProvider extends TechRebornRecipesProvider { fluidAmount 1000L fluid Fluids.WATER source "bauxite_ore_with_water" - criterion getCriterionName(TRContent.Dusts.BAUXITE.asTag()), getCriterionConditions(TRContent.Dusts.BAUXITE.asTag()) + criterion getCriterionName(TRContent.Ores.BAUXITE.asTag()), getCriterionConditions(TRContent.Ores.BAUXITE.asTag()) } offerIndustrialGrinderRecipe { ingredients TRContent.Ores.CINNABAR.asTag() @@ -420,7 +420,7 @@ class IndustrialGrinderRecipesProvider extends TechRebornRecipesProvider { fluidAmount 1000L fluid Fluids.WATER source "cinnabar_ore_with_water" - criterion getCriterionName(TRContent.Dusts.CINNABAR.asTag()), getCriterionConditions(TRContent.Dusts.CINNABAR.asTag()) + criterion getCriterionName(TRContent.Ores.CINNABAR.asTag()), getCriterionConditions(TRContent.Ores.CINNABAR.asTag()) } offerIndustrialGrinderRecipe { ingredients tag("c:coal_ores") @@ -442,5 +442,165 @@ class IndustrialGrinderRecipesProvider extends TechRebornRecipesProvider { source "coal_ore_with_mercury" criterion getCriterionName(tag("c:coal_ores")), getCriterionConditions(tag("c:coal_ores")) } + offerIndustrialGrinderRecipe { + ingredients tag("c:copper_ores") + outputs stack(Items.RAW_COPPER, 2), stack(Items.GOLD_NUGGET, 3) + power 64 + time 100 + fluidAmount 1000L + fluid Fluids.WATER + source "copper_ore_with_water" + criterion getCriterionName(tag("c:copper_ores")), getCriterionConditions(tag("c:copper_ores")) + } + offerIndustrialGrinderRecipe { + ingredients tag("c:copper_ores") + outputs stack(Items.RAW_COPPER, 3), stack(Items.GOLD_NUGGET, 3) + power 64 + time 100 + fluidAmount 1000L + fluid ModFluids.MERCURY.getFluid() + source "copper_ore_with_mercury" + criterion getCriterionName(tag("c:copper_ores")), getCriterionConditions(tag("c:copper_ores")) + } + offerIndustrialGrinderRecipe { + ingredients tag("c:copper_ores") + outputs stack(Items.RAW_COPPER, 2), Items.RAW_GOLD, TRContent.Dusts.NICKEL + power 64 + time 100 + fluidAmount 1000L + fluid ModFluids.SODIUM_PERSULFATE.getFluid() + source "copper_ore_with_sodium_persulfate" + criterion getCriterionName(tag("c:copper_ores")), getCriterionConditions(tag("c:copper_ores")) + } + offerIndustrialGrinderRecipe { + ingredients tag("c:diamond_ores") + outputs Items.DIAMOND, stack(TRContent.SmallDusts.DIAMOND, 6), TRContent.Dusts.COAL + power 64 + time 100 + fluidAmount 1000L + fluid Fluids.WATER + source "diamond_ore_with_water" + criterion getCriterionName(tag("c:diamond_ores")), getCriterionConditions(tag("c:diamond_ores")) + } + offerIndustrialGrinderRecipe { + ingredients tag("c:diamond_ores") + outputs stack(Items.DIAMOND, 2), stack(TRContent.SmallDusts.DIAMOND, 3) + power 64 + time 100 + fluidAmount 1000L + fluid ModFluids.MERCURY.getFluid() + source "diamond_ore_with_mercury" + criterion getCriterionName(tag("c:diamond_ores")), getCriterionConditions(tag("c:diamond_ores")) + } + offerIndustrialGrinderRecipe { + ingredients tag("c:emerald_ores") + outputs Items.EMERALD, stack(TRContent.SmallDusts.EMERALD, 6) + power 64 + time 100 + fluidAmount 1000L + fluid Fluids.WATER + source "emerald_ore_with_water" + criterion getCriterionName(tag("c:emerald_ores")), getCriterionConditions(tag("c:emerald_ores")) + } + offerIndustrialGrinderRecipe { + ingredients tag("c:emerald_ores") + outputs stack(Items.EMERALD, 2), stack(TRContent.SmallDusts.EMERALD, 3) + power 64 + time 100 + fluidAmount 1000L + fluid ModFluids.MERCURY.getFluid() + source "emerald_ore_with_mercury" + criterion getCriterionName(tag("c:emerald_ores")), getCriterionConditions(tag("c:emerald_ores")) + } + offerIndustrialGrinderRecipe { + ingredients TRContent.Ores.GALENA.asTag() + outputs stack(TRContent.Dusts.GALENA, 2), TRContent.Dusts.SULFUR + power 64 + time 100 + fluidAmount 1000L + fluid Fluids.WATER + source "galena_ore_with_water" + criterion getCriterionName(TRContent.Dusts.GALENA.asTag()), getCriterionConditions(TRContent.Dusts.GALENA.asTag()) + } + offerIndustrialGrinderRecipe { + ingredients TRContent.Ores.GALENA.asTag() + outputs stack(TRContent.Dusts.GALENA, 2), TRContent.Dusts.SULFUR, TRContent.RawMetals.SILVER + power 64 + time 100 + fluidAmount 1000L + fluid ModFluids.MERCURY.getFluid() + source "galena_ore_with_mercury" + criterion getCriterionName(TRContent.Ores.GALENA.asTag()), getCriterionConditions(TRContent.Ores.GALENA.asTag()) + } + offerIndustrialGrinderRecipe { + ingredients tag("minecraft:gold_ores") + outputs stack(Items.RAW_GOLD, 2), stack(TRContent.Nuggets.COPPER, 3), stack(TRContent.Nuggets.NICKEL) + power 64 + time 100 + fluidAmount 1000L + fluid Fluids.WATER + source "gold_ore_with_water" + criterion getCriterionName(tag("minecraft:gold_ores")), getCriterionConditions(tag("minecraft:gold_ores")) + } + offerIndustrialGrinderRecipe { + ingredients tag("c:gold_ores") + outputs stack(Items.RAW_GOLD, 3), stack(TRContent.Nuggets.COPPER, 3), stack(TRContent.Nuggets.NICKEL) + power 64 + time 100 + fluidAmount 1000L + fluid ModFluids.MERCURY.getFluid() + source "gold_ore_with_mercury" + criterion getCriterionName(tag("minecraft:gold_ores")), getCriterionConditions(tag("minecraft:gold_ores")) + } + offerIndustrialGrinderRecipe { + ingredients tag("c:gold_ores") + outputs stack(Items.RAW_GOLD, 2), Items.RAW_COPPER, TRContent.Dusts.NICKEL + power 64 + time 100 + fluidAmount 1000L + fluid ModFluids.SODIUM_PERSULFATE.getFluid() + source "gold_ore_with_sodium_persulfate" + criterion getCriterionName(tag("minecraft:gold_ores")), getCriterionConditions(tag("minecraft:gold_ores")) + } + offerIndustrialGrinderRecipe { + ingredients TRContent.Ores.IRIDIUM.asTag() + outputs TRContent.RawMetals.IRIDIUM, stack(TRContent.SmallDusts.PLATINUM, 2) + power 64 + time 100 + fluidAmount 1000L + fluid Fluids.WATER + source "iridium_ore_with_water" + criterion getCriterionName(TRContent.Ores.IRIDIUM.asTag()), getCriterionConditions(TRContent.Ores.IRIDIUM.asTag()) + } + offerIndustrialGrinderRecipe { + ingredients TRContent.Ores.IRIDIUM.asTag() + outputs stack(TRContent.RawMetals.IRIDIUM, 2), stack(TRContent.SmallDusts.PLATINUM, 2) + power 64 + time 100 + fluidAmount 1000L + fluid ModFluids.MERCURY.getFluid() + source "iridium_ore_with_mercury" + criterion getCriterionName(TRContent.Ores.IRIDIUM.asTag()), getCriterionConditions(TRContent.Ores.IRIDIUM.asTag()) + } + offerIndustrialGrinderRecipe { + ingredients TRContent.Ores.IRIDIUM.asTag() + outputs TRContent.RawMetals.IRIDIUM, TRContent.Dusts.PLATINUM + power 64 + time 100 + fluidAmount 1000L + fluid ModFluids.SODIUM_PERSULFATE.getFluid() + source "iridium_ore_with_sodium_persulfate" + criterion getCriterionName(TRContent.Ores.IRIDIUM.asTag()), getCriterionConditions(TRContent.Ores.IRIDIUM.asTag()) + } + offerIndustrialGrinderRecipe { + ingredients tag("c:iron_ores") + outputs stack(Items.RAW_IRON, 3), stack(TRContent.Nuggets.TIN, 3), stack(TRContent.Nuggets.NICKEL, 3) + power 64 + time 100 + fluidAmount 1000L + fluid Fluids.WATER + source "iron_ore_with_water" + criterion getCriterionName(tag("c:iron_ores")), getCriterionConditions(tag("c:iron_ores")) + } } } diff --git a/src/main/resources/data/techreborn/advancements/recipes/industrial_grinder/copper_ore_with_water.json b/src/main/resources/data/techreborn/advancements/recipes/industrial_grinder/copper_ore_with_water.json deleted file mode 100644 index bdd81a92d..000000000 --- a/src/main/resources/data/techreborn/advancements/recipes/industrial_grinder/copper_ore_with_water.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "techreborn:industrial_grinder/copper_ore_with_water" - ] - }, - "criteria": { - "has_copper_ore": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "tag": "c:copper_ores" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "techreborn:industrial_grinder/copper_ore_with_water" - } - } - }, - "requirements": [ - [ - "has_copper_ore", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/advancements/recipes/industrial_grinder/diamond_ore_with_water.json b/src/main/resources/data/techreborn/advancements/recipes/industrial_grinder/diamond_ore_with_water.json deleted file mode 100644 index 7931cbade..000000000 --- a/src/main/resources/data/techreborn/advancements/recipes/industrial_grinder/diamond_ore_with_water.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "techreborn:industrial_grinder/diamond_ore_with_water" - ] - }, - "criteria": { - "has_diamond_ore": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "tag": "c:diamond_ores" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "techreborn:industrial_grinder/diamond_ore_with_water" - } - } - }, - "requirements": [ - [ - "has_diamond_ore", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/advancements/recipes/industrial_grinder/emerald_ore_with_water.json b/src/main/resources/data/techreborn/advancements/recipes/industrial_grinder/emerald_ore_with_water.json deleted file mode 100644 index 4b32d1e25..000000000 --- a/src/main/resources/data/techreborn/advancements/recipes/industrial_grinder/emerald_ore_with_water.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "techreborn:industrial_grinder/emerald_ore_with_water" - ] - }, - "criteria": { - "has_emerald_ore": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "tag": "c:emerald_ores" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "techreborn:industrial_grinder/emerald_ore_with_water" - } - } - }, - "requirements": [ - [ - "has_emerald_ore", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/advancements/recipes/industrial_grinder/galena_ore_with_water.json b/src/main/resources/data/techreborn/advancements/recipes/industrial_grinder/galena_ore_with_water.json deleted file mode 100644 index e3c29cb48..000000000 --- a/src/main/resources/data/techreborn/advancements/recipes/industrial_grinder/galena_ore_with_water.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "techreborn:industrial_grinder/galena_ore_with_water" - ] - }, - "criteria": { - "has_galena_ore": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "tag": "c:galena_ores" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "techreborn:industrial_grinder/galena_ore_with_water" - } - } - }, - "requirements": [ - [ - "has_galena_ore", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/advancements/recipes/industrial_grinder/gold_ore_with_water.json b/src/main/resources/data/techreborn/advancements/recipes/industrial_grinder/gold_ore_with_water.json deleted file mode 100644 index b7a853a55..000000000 --- a/src/main/resources/data/techreborn/advancements/recipes/industrial_grinder/gold_ore_with_water.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "techreborn:industrial_grinder/gold_ore_with_water" - ] - }, - "criteria": { - "has_gold_ore": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "tag": "c:gold_ores" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "techreborn:industrial_grinder/gold_ore_with_water" - } - } - }, - "requirements": [ - [ - "has_gold_ore", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/advancements/recipes/industrial_grinder/iridium_ore_with_water.json b/src/main/resources/data/techreborn/advancements/recipes/industrial_grinder/iridium_ore_with_water.json deleted file mode 100644 index d8747c3e5..000000000 --- a/src/main/resources/data/techreborn/advancements/recipes/industrial_grinder/iridium_ore_with_water.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "techreborn:industrial_grinder/iridium_ore_with_water" - ] - }, - "criteria": { - "has_iridium_ore": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "tag": "c:iridium_ores" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "techreborn:industrial_grinder/iridium_ore_with_water" - } - } - }, - "requirements": [ - [ - "has_iridium_ore", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/advancements/recipes/industrial_grinder/iron_ore.json b/src/main/resources/data/techreborn/advancements/recipes/industrial_grinder/iron_ore.json deleted file mode 100644 index dbc82f354..000000000 --- a/src/main/resources/data/techreborn/advancements/recipes/industrial_grinder/iron_ore.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "techreborn:industrial_grinder/iron_ore" - ] - }, - "criteria": { - "has_iron_ore": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "tag": "c:iron_ores" - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "techreborn:industrial_grinder/iron_ore" - } - } - }, - "requirements": [ - [ - "has_iron_ore", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/recipes/industrial_grinder/copper_ore_with_mercury.json b/src/main/resources/data/techreborn/recipes/industrial_grinder/copper_ore_with_mercury.json deleted file mode 100644 index f579ff4fe..000000000 --- a/src/main/resources/data/techreborn/recipes/industrial_grinder/copper_ore_with_mercury.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "type": "techreborn:industrial_grinder", - "power": 64, - "time": 100, - "tank": { - "fluid": "techreborn:mercury", - "amount": 1000 - }, - "ingredients": [ - { - "tag": "c:copper_ores" - } - ], - "results": [ - { - "item": "minecraft:raw_copper", - "count": 3 - }, - { - "item": "minecraft:gold_nugget", - "count": 3 - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/recipes/industrial_grinder/copper_ore_with_sodiumpersulfate.json b/src/main/resources/data/techreborn/recipes/industrial_grinder/copper_ore_with_sodiumpersulfate.json deleted file mode 100644 index d26da578a..000000000 --- a/src/main/resources/data/techreborn/recipes/industrial_grinder/copper_ore_with_sodiumpersulfate.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "type": "techreborn:industrial_grinder", - "power": 64, - "time": 100, - "tank": { - "fluid": "techreborn:sodium_persulfate", - "amount": 1000 - }, - "ingredients": [ - { - "tag": "c:copper_ores" - } - ], - "results": [ - { - "item": "minecraft:raw_copper", - "count": 2 - }, - { - "item": "minecraft:raw_gold" - }, - { - "item": "techreborn:nickel_dust" - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/recipes/industrial_grinder/copper_ore_with_water.json b/src/main/resources/data/techreborn/recipes/industrial_grinder/copper_ore_with_water.json deleted file mode 100644 index 256418438..000000000 --- a/src/main/resources/data/techreborn/recipes/industrial_grinder/copper_ore_with_water.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "type": "techreborn:industrial_grinder", - "power": 64, - "time": 100, - "tank": { - "fluid": "minecraft:water", - "amount": 1000 - }, - "ingredients": [ - { - "tag": "c:copper_ores" - } - ], - "results": [ - { - "item": "minecraft:raw_copper", - "count": 2 - }, - { - "item": "minecraft:gold_nugget", - "count": 3 - }, - { - "item": "techreborn:nickel_nugget", - "count": 3 - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/recipes/industrial_grinder/diamond_ore_with_mercury.json b/src/main/resources/data/techreborn/recipes/industrial_grinder/diamond_ore_with_mercury.json deleted file mode 100644 index 74c84b813..000000000 --- a/src/main/resources/data/techreborn/recipes/industrial_grinder/diamond_ore_with_mercury.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "type": "techreborn:industrial_grinder", - "power": 64, - "time": 100, - "tank": { - "fluid": "techreborn:mercury", - "amount": 1000 - }, - "ingredients": [ - { - "tag": "c:diamond_ores" - } - ], - "results": [ - { - "item": "minecraft:diamond", - "count": 2 - }, - { - "item": "techreborn:diamond_small_dust", - "count": 3 - } - ] -} diff --git a/src/main/resources/data/techreborn/recipes/industrial_grinder/diamond_ore_with_water.json b/src/main/resources/data/techreborn/recipes/industrial_grinder/diamond_ore_with_water.json deleted file mode 100644 index d5abd916d..000000000 --- a/src/main/resources/data/techreborn/recipes/industrial_grinder/diamond_ore_with_water.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "type": "techreborn:industrial_grinder", - "power": 64, - "time": 100, - "tank": { - "fluid": "minecraft:water", - "amount": 1000 - }, - "ingredients": [ - { - "tag": "c:diamond_ores" - } - ], - "results": [ - { - "item": "minecraft:diamond" - }, - { - "item": "techreborn:diamond_small_dust", - "count": 6 - }, - { - "item": "techreborn:coal_dust" - } - ] -} diff --git a/src/main/resources/data/techreborn/recipes/industrial_grinder/emerald_ore_with_mercury.json b/src/main/resources/data/techreborn/recipes/industrial_grinder/emerald_ore_with_mercury.json deleted file mode 100644 index a92e91d81..000000000 --- a/src/main/resources/data/techreborn/recipes/industrial_grinder/emerald_ore_with_mercury.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "type": "techreborn:industrial_grinder", - "power": 64, - "time": 100, - "tank": { - "fluid": "techreborn:mercury", - "amount": 1000 - }, - "ingredients": [ - { - "tag": "c:emerald_ores" - } - ], - "results": [ - { - "item": "minecraft:emerald", - "count": 2 - }, - { - "item": "techreborn:emerald_small_dust", - "count": 3 - } - ] -} diff --git a/src/main/resources/data/techreborn/recipes/industrial_grinder/emerald_ore_with_water.json b/src/main/resources/data/techreborn/recipes/industrial_grinder/emerald_ore_with_water.json deleted file mode 100644 index ae6bec437..000000000 --- a/src/main/resources/data/techreborn/recipes/industrial_grinder/emerald_ore_with_water.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "type": "techreborn:industrial_grinder", - "power": 64, - "time": 100, - "tank": { - "fluid": "minecraft:water", - "amount": 1000 - }, - "ingredients": [ - { - "tag": "c:emerald_ores" - } - ], - "results": [ - { - "item": "minecraft:emerald" - }, - { - "item": "techreborn:emerald_small_dust", - "count": 6 - } - ] -} diff --git a/src/main/resources/data/techreborn/recipes/industrial_grinder/galena_ore_with_mercury.json b/src/main/resources/data/techreborn/recipes/industrial_grinder/galena_ore_with_mercury.json deleted file mode 100644 index 567a86e7f..000000000 --- a/src/main/resources/data/techreborn/recipes/industrial_grinder/galena_ore_with_mercury.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "type": "techreborn:industrial_grinder", - "power": 64, - "time": 100, - "tank": { - "fluid": "techreborn:mercury", - "amount": 1000 - }, - "ingredients": [ - { - "tag": "c:galena_ores" - } - ], - "results": [ - { - "item": "techreborn:galena_dust", - "count": 2 - }, - { - "item": "techreborn:sulfur_dust" - }, - { - "item": "techreborn:raw_silver" - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/recipes/industrial_grinder/galena_ore_with_water.json b/src/main/resources/data/techreborn/recipes/industrial_grinder/galena_ore_with_water.json deleted file mode 100644 index be51f434a..000000000 --- a/src/main/resources/data/techreborn/recipes/industrial_grinder/galena_ore_with_water.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "type": "techreborn:industrial_grinder", - "power": 64, - "time": 100, - "tank": { - "fluid": "minecraft:water", - "amount": 1000 - }, - "ingredients": [ - { - "tag": "c:galena_ores" - } - ], - "results": [ - { - "item": "techreborn:galena_dust", - "count": 2 - }, - { - "item": "techreborn:sulfur_dust" - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/recipes/industrial_grinder/gold_ore_with_mercury.json b/src/main/resources/data/techreborn/recipes/industrial_grinder/gold_ore_with_mercury.json deleted file mode 100644 index fc85c6dac..000000000 --- a/src/main/resources/data/techreborn/recipes/industrial_grinder/gold_ore_with_mercury.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "type": "techreborn:industrial_grinder", - "power": 64, - "time": 100, - "tank": { - "fluid": "techreborn:mercury", - "amount": 1000 - }, - "ingredients": [ - { - "tag": "minecraft:gold_ores" - } - ], - "results": [ - { - "item": "minecraft:raw_gold", - "count": 3 - }, - { - "item": "techreborn:copper_nugget", - "count": 3 - }, - { - "item": "techreborn:nickel_nugget", - "count": 3 - } - ] -} diff --git a/src/main/resources/data/techreborn/recipes/industrial_grinder/gold_ore_with_sodiumpersulfate.json b/src/main/resources/data/techreborn/recipes/industrial_grinder/gold_ore_with_sodiumpersulfate.json deleted file mode 100644 index 37b45c5cf..000000000 --- a/src/main/resources/data/techreborn/recipes/industrial_grinder/gold_ore_with_sodiumpersulfate.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "type": "techreborn:industrial_grinder", - "power": 64, - "time": 100, - "tank": { - "fluid": "techreborn:sodium_persulfate", - "amount": 1000 - }, - "ingredients": [ - { - "tag": "minecraft:gold_ores" - } - ], - "results": [ - { - "item": "minecraft:raw_gold", - "count": 2 - }, - { - "item": "minecraft:raw_copper" - }, - { - "item": "techreborn:nickel_dust" - } - ] -} diff --git a/src/main/resources/data/techreborn/recipes/industrial_grinder/gold_ore_with_water.json b/src/main/resources/data/techreborn/recipes/industrial_grinder/gold_ore_with_water.json deleted file mode 100644 index c772a15ed..000000000 --- a/src/main/resources/data/techreborn/recipes/industrial_grinder/gold_ore_with_water.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "type": "techreborn:industrial_grinder", - "power": 64, - "time": 100, - "tank": { - "fluid": "minecraft:water", - "amount": 1000 - }, - "ingredients": [ - { - "tag": "minecraft:gold_ores" - } - ], - "results": [ - { - "item": "minecraft:raw_gold", - "count": 2 - }, - { - "item": "techreborn:copper_nugget", - "count": 3 - }, - { - "item": "techreborn:nickel_nugget", - "count": 3 - } - ] -} diff --git a/src/main/resources/data/techreborn/recipes/industrial_grinder/iridium_ore_with_mercury.json b/src/main/resources/data/techreborn/recipes/industrial_grinder/iridium_ore_with_mercury.json deleted file mode 100644 index 471899d3c..000000000 --- a/src/main/resources/data/techreborn/recipes/industrial_grinder/iridium_ore_with_mercury.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "type": "techreborn:industrial_grinder", - "power": 64, - "time": 100, - "tank": { - "fluid": "techreborn:mercury", - "amount": 1000 - }, - "ingredients": [ - { - "tag": "c:iridium_ores" - } - ], - "results": [ - { - "item": "techreborn:raw_iridium", - "count": 2 - }, - { - "item": "techreborn:platinum_small_dust", - "count": 2 - } - ] -} diff --git a/src/main/resources/data/techreborn/recipes/industrial_grinder/iridium_ore_with_sodiumpersulfate.json b/src/main/resources/data/techreborn/recipes/industrial_grinder/iridium_ore_with_sodiumpersulfate.json deleted file mode 100644 index 4681cd96d..000000000 --- a/src/main/resources/data/techreborn/recipes/industrial_grinder/iridium_ore_with_sodiumpersulfate.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "type": "techreborn:industrial_grinder", - "power": 64, - "time": 100, - "tank": { - "fluid": "techreborn:sodium_persulfate", - "amount": 1000 - }, - "ingredients": [ - { - "tag": "c:iridium_ores" - } - ], - "results": [ - { - "item": "techreborn:raw_iridium" - }, - { - "item": "techreborn:platinum_dust" - } - ] -} diff --git a/src/main/resources/data/techreborn/recipes/industrial_grinder/iridium_ore_with_water.json b/src/main/resources/data/techreborn/recipes/industrial_grinder/iridium_ore_with_water.json deleted file mode 100644 index ef0298afa..000000000 --- a/src/main/resources/data/techreborn/recipes/industrial_grinder/iridium_ore_with_water.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "type": "techreborn:industrial_grinder", - "power": 64, - "time": 100, - "tank": { - "fluid": "minecraft:water", - "amount": 1000 - }, - "ingredients": [ - { - "tag": "c:iridium_ores" - } - ], - "results": [ - { - "item": "techreborn:raw_iridium" - }, - { - "item": "techreborn:platinum_small_dust", - "count": 2 - } - ] -} diff --git a/src/main/resources/data/techreborn/recipes/industrial_grinder/iron_ore.json b/src/main/resources/data/techreborn/recipes/industrial_grinder/iron_ore.json deleted file mode 100644 index 4f50231bf..000000000 --- a/src/main/resources/data/techreborn/recipes/industrial_grinder/iron_ore.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "type": "techreborn:industrial_grinder", - "power": 64, - "time": 100, - "tank": { - "fluid": "minecraft:water", - "amount": 1000 - }, - "ingredients": [ - { - "tag": "c:iron_ores" - } - ], - "results": [ - { - "item": "minecraft:raw_iron", - "count": 3 - }, - { - "item": "techreborn:tin_nugget", - "count": 3 - }, - { - "item": "techreborn:nickel_nugget", - "count": 3 - } - ] -}