From 0b182439e1488a341c40f68a1e0612e837ec093b Mon Sep 17 00:00:00 2001 From: VoidLeech Date: Thu, 12 Dec 2024 01:52:54 +0100 Subject: [PATCH 1/6] chore: add more mods for datagen --- .../com/simibubi/create/foundation/data/recipe/Mods.java | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/src/main/java/com/simibubi/create/foundation/data/recipe/Mods.java b/src/main/java/com/simibubi/create/foundation/data/recipe/Mods.java index c5611ef246..4c4a19932f 100644 --- a/src/main/java/com/simibubi/create/foundation/data/recipe/Mods.java +++ b/src/main/java/com/simibubi/create/foundation/data/recipe/Mods.java @@ -56,7 +56,14 @@ public enum Mods { AET("aether"), HH("hauntedharvest"), VMP("vampirism"), - WSP("windswept") + WSP("windswept"), + D_AET("deep_aether"), + A_AET("ancient_aether"), + AET_R("aether_redux"), + GOTD("gardens_of_the_dead"), + UUE("unusualend"), + UG("undergarden"), + DD("deeperdarker") ; From e002d68dc2a5f0088230f3a34b060b932e9f409e Mon Sep 17 00:00:00 2001 From: VoidLeech Date: Thu, 12 Dec 2024 01:55:56 +0100 Subject: [PATCH 2/6] feat: fluids in datagen without compile-time existence --- .../recipe/ProcessingRecipeBuilder.java | 9 ++++ .../data/recipe/DatagenFluidStack.java | 29 ++++++++++ .../create/foundation/fluid/FluidHelper.java | 10 ++-- .../foundation/fluid/FluidIngredient.java | 53 +++++++++++++++++++ 4 files changed, 97 insertions(+), 4 deletions(-) create mode 100644 src/main/java/com/simibubi/create/foundation/data/recipe/DatagenFluidStack.java diff --git a/src/main/java/com/simibubi/create/content/processing/recipe/ProcessingRecipeBuilder.java b/src/main/java/com/simibubi/create/content/processing/recipe/ProcessingRecipeBuilder.java index 7004a95d0c..e00b143a43 100644 --- a/src/main/java/com/simibubi/create/content/processing/recipe/ProcessingRecipeBuilder.java +++ b/src/main/java/com/simibubi/create/content/processing/recipe/ProcessingRecipeBuilder.java @@ -7,6 +7,7 @@ import com.google.gson.JsonArray; import com.google.gson.JsonObject; import com.simibubi.create.foundation.data.SimpleDatagenIngredient; +import com.simibubi.create.foundation.data.recipe.DatagenFluidStack; import com.simibubi.create.foundation.data.recipe.Mods; import com.simibubi.create.foundation.fluid.FluidHelper; import com.simibubi.create.foundation.fluid.FluidIngredient; @@ -129,6 +130,10 @@ public ProcessingRecipeBuilder require(ResourceLocation ingredient) { return this; } + public ProcessingRecipeBuilder require(Mods mod, String fluid, int amount) { + return require(new FluidIngredient.DatagenFluidIngredient(mod.asResource(fluid), amount)); + } + public ProcessingRecipeBuilder require(Fluid fluid, int amount) { return require(FluidIngredient.fromFluid(fluid, amount)); } @@ -183,6 +188,10 @@ public ProcessingRecipeBuilder output(ProcessingOutput output) { return this; } + public ProcessingRecipeBuilder output(Mods mod, String fluid, int amount) { + return output(new DatagenFluidStack(mod.asResource(fluid), amount)); + } + public ProcessingRecipeBuilder output(Fluid fluid, int amount) { fluid = FluidHelper.convertToStill(fluid); return output(new FluidStack(fluid, amount)); diff --git a/src/main/java/com/simibubi/create/foundation/data/recipe/DatagenFluidStack.java b/src/main/java/com/simibubi/create/foundation/data/recipe/DatagenFluidStack.java new file mode 100644 index 0000000000..8d50e1cefa --- /dev/null +++ b/src/main/java/com/simibubi/create/foundation/data/recipe/DatagenFluidStack.java @@ -0,0 +1,29 @@ +package com.simibubi.create.foundation.data.recipe; + +import net.minecraft.resources.ResourceLocation; +import net.minecraft.world.level.material.Fluids; +import net.minecraftforge.fluids.FluidStack; + +import org.jetbrains.annotations.ApiStatus; + +/** + * Used to represent fluid outputs in recipe datagen without needing the fluid to exist at runtime. + */ +@ApiStatus.Internal +public final class DatagenFluidStack extends FluidStack { + private final ResourceLocation actualFluid; + + public DatagenFluidStack(ResourceLocation fluid, int amount) { + // This fluid is a farce + super(Fluids.WATER, amount); + actualFluid = fluid; + } + + /** + * Supersedes the result of getFluid() for the purpose of obtaining a string representation of the fluid + * @return String value of the actual fluid's ResourceLocation + */ + public String getActualFluid(){ + return actualFluid.toString(); + } +} diff --git a/src/main/java/com/simibubi/create/foundation/fluid/FluidHelper.java b/src/main/java/com/simibubi/create/foundation/fluid/FluidHelper.java index e00cbd7d39..c805732bdd 100644 --- a/src/main/java/com/simibubi/create/foundation/fluid/FluidHelper.java +++ b/src/main/java/com/simibubi/create/foundation/fluid/FluidHelper.java @@ -11,6 +11,7 @@ import com.simibubi.create.content.fluids.transfer.GenericItemEmptying; import com.simibubi.create.content.fluids.transfer.GenericItemFilling; import com.simibubi.create.foundation.blockEntity.SmartBlockEntity; +import com.simibubi.create.foundation.data.recipe.DatagenFluidStack; import com.simibubi.create.foundation.utility.Pair; import com.simibubi.create.foundation.utility.RegisteredObjects; @@ -53,11 +54,11 @@ public static boolean isWater(Fluid fluid) { public static boolean isLava(Fluid fluid) { return convertToStill(fluid) == Fluids.LAVA; } - + public static boolean isSame(FluidStack fluidStack, FluidStack fluidStack2) { return fluidStack.getFluid() == fluidStack2.getFluid(); } - + public static boolean isSame(FluidStack fluidStack, Fluid fluid) { return fluidStack.getFluid() == fluid; } @@ -133,8 +134,9 @@ public static Fluid convertToStill(Fluid fluid) { public static JsonElement serializeFluidStack(FluidStack stack) { JsonObject json = new JsonObject(); - json.addProperty("fluid", RegisteredObjects.getKeyOrThrow(stack.getFluid()) - .toString()); + json.addProperty("fluid", stack instanceof DatagenFluidStack datagenFluidStack ? + datagenFluidStack.getActualFluid() : + RegisteredObjects.getKeyOrThrow(stack.getFluid()).toString()); json.addProperty("amount", stack.getAmount()); if (stack.hasTag()) json.addProperty("nbt", stack.getTag() diff --git a/src/main/java/com/simibubi/create/foundation/fluid/FluidIngredient.java b/src/main/java/com/simibubi/create/foundation/fluid/FluidIngredient.java index ce69e75793..0a4a4c37f4 100644 --- a/src/main/java/com/simibubi/create/foundation/fluid/FluidIngredient.java +++ b/src/main/java/com/simibubi/create/foundation/fluid/FluidIngredient.java @@ -26,6 +26,8 @@ import net.minecraftforge.fluids.FluidStack; import net.minecraftforge.registries.ForgeRegistries; +import org.jetbrains.annotations.ApiStatus; + public abstract class FluidIngredient implements Predicate { public static final FluidIngredient EMPTY = new FluidStackIngredient(); @@ -256,4 +258,55 @@ protected List determineMatchingFluidStacks() { } + /** + * Used to represent fluid inputs in recipe datagen without needing the fluid to exist at runtime. + */ + @ApiStatus.Internal + public static final class DatagenFluidIngredient extends FluidIngredient{ + + private final ResourceLocation fluid; + + public DatagenFluidIngredient(ResourceLocation fluid, int amountRequired) { + this.fluid = fluid; + this.amountRequired = amountRequired; + } + + @Override + protected boolean testInternal(FluidStack t) { + return false; + } + + @Override + protected void readInternal(FriendlyByteBuf buffer) { + + } + + @Override + protected void writeInternal(FriendlyByteBuf buffer) { + + } + + @Override + protected void readInternal(JsonObject json) { + + } + + @Override + protected void writeInternal(JsonObject json) { + + } + + @Override + protected List determineMatchingFluidStacks() { + return null; + } + + @Override + public JsonObject serialize() { + JsonObject json = super.serialize(); + json.addProperty("fluid", fluid.toString()); + return json; + } + } + } From 983677e958d8f92708c067f94a6af56b23daa553 Mon Sep 17 00:00:00 2001 From: VoidLeech Date: Thu, 12 Dec 2024 02:10:10 +0100 Subject: [PATCH 3/6] feat: add modFlower milling helper --- .../data/recipe/MillingRecipeGen.java | 33 +++++++++++++++++-- 1 file changed, 31 insertions(+), 2 deletions(-) diff --git a/src/main/java/com/simibubi/create/foundation/data/recipe/MillingRecipeGen.java b/src/main/java/com/simibubi/create/foundation/data/recipe/MillingRecipeGen.java index 6b28a22d50..f0869c008e 100644 --- a/src/main/java/com/simibubi/create/foundation/data/recipe/MillingRecipeGen.java +++ b/src/main/java/com/simibubi/create/foundation/data/recipe/MillingRecipeGen.java @@ -720,8 +720,7 @@ public class MillingRecipeGen extends ProcessingRecipeGen { RU_YELLOW_SNOWBELLE = ruFlower("yellow_snowbelle", List.of(1f), List.of(Items.YELLOW_DYE), List.of(2)) - - ; + ; protected GeneratedRecipe metalOre(String name, ItemEntry crushed, int duration) { return create(name + "_ore", b -> b.duration(duration) @@ -848,6 +847,36 @@ protected GeneratedRecipe ruFlower(String input, List chances, } } + protected GeneratedRecipe modFlower(Mods mod, String input, List chances, + List dyes, List amounts){ + return switch (chances.size()) { + // Milling recipe has a max of 4 outputs + case 1 -> create(mod.recipeId(input), b -> b.duration(50) + .require(mod, input) + .output(chances.get(0), dyes.get(0), amounts.get(0)) + .whenModLoaded(mod.getId())); + case 2 -> create(mod.recipeId(input), b -> b.duration(50) + .require(mod, input) + .output(chances.get(0), dyes.get(0), amounts.get(0)) + .output(chances.get(1), dyes.get(1), amounts.get(1)) + .whenModLoaded(mod.getId())); + case 3 -> create(mod.recipeId(input), b -> b.duration(50) + .require(mod, input) + .output(chances.get(0), dyes.get(0), amounts.get(0)) + .output(chances.get(1), dyes.get(1), amounts.get(1)) + .output(chances.get(2), dyes.get(2), amounts.get(2)) + .whenModLoaded(mod.getId())); + case 4 -> create(mod.recipeId(input), b -> b.duration(50) + .require(mod, input) + .output(chances.get(0), dyes.get(0), amounts.get(0)) + .output(chances.get(1), dyes.get(1), amounts.get(1)) + .output(chances.get(2), dyes.get(2), amounts.get(2)) + .output(chances.get(3), dyes.get(3), amounts.get(3)) + .whenModLoaded(mod.getId())); + default -> null; + }; + } + public MillingRecipeGen(PackOutput output) { super(output); } From 253737fdee404c605a70ab151e74c2cd05bda870 Mon Sep 17 00:00:00 2001 From: VoidLeech Date: Thu, 12 Dec 2024 02:10:50 +0100 Subject: [PATCH 4/6] feat: data compat for aether, ancient aether, deep aether & aether redux --- .../2d64935085b86659cb7857bad9701dbf9bab6e4c | 18 +-- .../b256105d8411632b0d585496ea8944a751a08034 | 109 +++++++++++++++- .../compat/ancient_aether/quartz_ore.json | 32 +++++ .../compat/deep_aether/skyjade_ore.json | 32 +++++ .../cutting/compat/aether/golden_oak_log.json | 20 +++ .../compat/aether/golden_oak_wood.json | 20 +++ .../cutting/compat/aether/skyroot_log.json | 20 +++ .../cutting/compat/aether/skyroot_wood.json | 20 +++ .../compat/aether/stripped_skyroot_log.json | 21 +++ .../compat/aether/stripped_skyroot_wood.json | 21 +++ .../compat/aether_redux/blightwillow_log.json | 20 +++ .../aether_redux/blightwillow_wood.json | 20 +++ .../compat/aether_redux/cloudcap_hyphae.json | 20 +++ .../compat/aether_redux/cloudcap_stem.json | 20 +++ .../compat/aether_redux/crystal_log.json | 20 +++ .../compat/aether_redux/crystal_wood.json | 20 +++ .../compat/aether_redux/fieldsproot_log.json | 20 +++ .../compat/aether_redux/fieldsproot_wood.json | 20 +++ .../compat/aether_redux/glacia_log.json | 20 +++ .../compat/aether_redux/glacia_wood.json | 20 +++ .../aether_redux/jellyshroom_hyphae.json | 21 +++ .../compat/aether_redux/jellyshroom_stem.json | 21 +++ .../sporing_blightwillow_log.json | 20 +++ .../sporing_blightwillow_wood.json | 20 +++ .../stripped_blightwillow_log.json | 21 +++ .../stripped_blightwillow_wood.json | 21 +++ .../stripped_cloudcap_hyphae.json | 21 +++ .../aether_redux/stripped_cloudcap_stem.json | 21 +++ .../aether_redux/stripped_crystal_log.json | 21 +++ .../aether_redux/stripped_crystal_wood.json | 21 +++ .../stripped_fieldsproot_log.json | 21 +++ .../stripped_fieldsproot_wood.json | 21 +++ .../aether_redux/stripped_glacia_log.json | 21 +++ .../aether_redux/stripped_glacia_wood.json | 21 +++ .../compat/ancient_aether/highsproot_log.json | 20 +++ .../ancient_aether/highsproot_wood.json | 20 +++ .../compat/ancient_aether/sakura_log.json | 20 +++ .../compat/ancient_aether/sakura_wood.json | 20 +++ .../stripped_highsproot_log.json | 21 +++ .../stripped_highsproot_wood.json | 21 +++ .../ancient_aether/stripped_sakura_log.json | 21 +++ .../ancient_aether/stripped_sakura_wood.json | 21 +++ .../compat/deep_aether/conberry_log.json | 20 +++ .../compat/deep_aether/conberry_wood.json | 20 +++ .../compat/deep_aether/cruderoot_log.json | 20 +++ .../compat/deep_aether/cruderoot_wood.json | 20 +++ .../compat/deep_aether/roseroot_log.json | 20 +++ .../compat/deep_aether/roseroot_wood.json | 20 +++ .../deep_aether/stripped_conberry_log.json | 21 +++ .../deep_aether/stripped_conberry_wood.json | 21 +++ .../deep_aether/stripped_cruderoot_log.json | 21 +++ .../deep_aether/stripped_cruderoot_wood.json | 21 +++ .../deep_aether/stripped_roseroot_log.json | 21 +++ .../deep_aether/stripped_roseroot_wood.json | 21 +++ .../deep_aether/stripped_sunroot_log.json | 21 +++ .../deep_aether/stripped_sunroot_wood.json | 21 +++ .../deep_aether/stripped_yagroot_log.json | 21 +++ .../deep_aether/stripped_yagroot_wood.json | 21 +++ .../compat/deep_aether/sunroot_log.json | 20 +++ .../compat/deep_aether/sunroot_wood.json | 20 +++ .../compat/deep_aether/yagroot_log.json | 20 +++ .../compat/deep_aether/yagroot_wood.json | 20 +++ .../emptying/compat/aether/milk_bucket.json | 23 ++++ .../emptying/compat/aether/water_bucket.json | 23 ++++ .../compat/deep_aether/poison_bucket.json | 23 ++++ .../deep_aether/skyroot_poison_bucket.json | 23 ++++ .../filling/compat/aether/milk_bucket.json | 23 ++++ .../filling/compat/aether/water_bucket.json | 24 ++++ .../deep_aether/skyroot_poison_bucket.json | 23 ++++ .../milling/compat/aether/purple_flower.json | 21 +++ .../milling/compat/aether/white_flower.json | 21 +++ .../milling/compat/aether_redux/aurum.json | 21 +++ .../compat/aether_redux/blightshade.json | 25 ++++ .../compat/aether_redux/daggerbloom.json | 25 ++++ .../aether_redux/fieldsproot_petals.json | 33 +++++ .../compat/aether_redux/flareblossom.json | 26 ++++ .../compat/aether_redux/golden_clover.json | 21 +++ .../milling/compat/aether_redux/infernia.json | 29 +++++ .../milling/compat/aether_redux/iridia.json | 21 +++ .../milling/compat/aether_redux/lumina.json | 21 +++ .../milling/compat/aether_redux/luxweed.json | 24 ++++ .../compat/aether_redux/skysprouts.json | 21 +++ .../compat/aether_redux/spirolyctil.json | 25 ++++ .../milling/compat/aether_redux/theratip.json | 21 +++ .../compat/aether_redux/wyndsprouts.json | 21 +++ .../compat/aether_redux/xaelia_patch.json | 21 +++ .../milling/compat/aether_redux/zyatrix.json | 25 ++++ .../compat/ancient_aether/elevetia.json | 25 ++++ .../compat/ancient_aether/sky_blues.json | 21 +++ .../compat/ancient_aether/sunset_rose.json | 21 +++ .../compat/ancient_aether/valkyrie_clay.json | 19 +++ .../compat/ancient_aether/wynd_thistle.json | 21 +++ .../compat/deep_aether/aerlavender.json | 21 +++ .../compat/deep_aether/aether_cattails.json | 21 +++ .../milling/compat/deep_aether/echaisy.json | 21 +++ .../compat/deep_aether/enchanted_blossom.json | 25 ++++ .../compat/deep_aether/golden_aspess.json | 21 +++ .../compat/deep_aether/golden_flower.json | 25 ++++ .../milling/compat/deep_aether/iaspove.json | 21 +++ .../compat/deep_aether/medium_grass.json | 29 +++++ .../compat/deep_aether/mini_grass.json | 29 +++++ .../compat/deep_aether/radiant_orchid.json | 21 +++ .../compat/deep_aether/short_grass.json | 29 +++++ .../compat/deep_aether/sky_tulips.json | 21 +++ .../compat/deep_aether/tall_aerlavender.json | 26 ++++ .../deep_aether/tall_aether_cattails.json | 26 ++++ .../compat/deep_aether/tall_grass.json | 29 +++++ .../mixing/compat/deep_aether/aether_mud.json | 24 ++++ .../deep_aether_golden_dirt_path.json | 19 +++ .../create/tags/blocks/fan_transparent.json | 6 +- .../data/create/tags/blocks/roots.json | 4 + .../create/tags/blocks/tree_attachments.json | 34 ++++- .../tags/items/modded_stripped_logs.json | 52 ++++++++ .../tags/items/modded_stripped_wood.json | 52 ++++++++ .../create/tags/items/upright_on_belt.json | 26 +++- .../data/recipe/CrushingRecipeGen.java | 23 +++- .../data/recipe/CuttingRecipeGen.java | 23 +++- .../data/recipe/EmptyingRecipeGen.java | 22 +++- .../data/recipe/FillingRecipeGen.java | 19 ++- .../data/recipe/MillingRecipeGen.java | 123 +++++++++++++++++- .../data/recipe/MixingRecipeGen.java | 8 +- .../data/recipe/PressingRecipeGen.java | 5 +- .../data/CreateRegistrateTags.java | 23 ++++ 123 files changed, 2876 insertions(+), 22 deletions(-) create mode 100644 src/generated/resources/data/create/recipes/crushing/compat/ancient_aether/quartz_ore.json create mode 100644 src/generated/resources/data/create/recipes/crushing/compat/deep_aether/skyjade_ore.json create mode 100644 src/generated/resources/data/create/recipes/cutting/compat/aether/golden_oak_log.json create mode 100644 src/generated/resources/data/create/recipes/cutting/compat/aether/golden_oak_wood.json create mode 100644 src/generated/resources/data/create/recipes/cutting/compat/aether/skyroot_log.json create mode 100644 src/generated/resources/data/create/recipes/cutting/compat/aether/skyroot_wood.json create mode 100644 src/generated/resources/data/create/recipes/cutting/compat/aether/stripped_skyroot_log.json create mode 100644 src/generated/resources/data/create/recipes/cutting/compat/aether/stripped_skyroot_wood.json create mode 100644 src/generated/resources/data/create/recipes/cutting/compat/aether_redux/blightwillow_log.json create mode 100644 src/generated/resources/data/create/recipes/cutting/compat/aether_redux/blightwillow_wood.json create mode 100644 src/generated/resources/data/create/recipes/cutting/compat/aether_redux/cloudcap_hyphae.json create mode 100644 src/generated/resources/data/create/recipes/cutting/compat/aether_redux/cloudcap_stem.json create mode 100644 src/generated/resources/data/create/recipes/cutting/compat/aether_redux/crystal_log.json create mode 100644 src/generated/resources/data/create/recipes/cutting/compat/aether_redux/crystal_wood.json create mode 100644 src/generated/resources/data/create/recipes/cutting/compat/aether_redux/fieldsproot_log.json create mode 100644 src/generated/resources/data/create/recipes/cutting/compat/aether_redux/fieldsproot_wood.json create mode 100644 src/generated/resources/data/create/recipes/cutting/compat/aether_redux/glacia_log.json create mode 100644 src/generated/resources/data/create/recipes/cutting/compat/aether_redux/glacia_wood.json create mode 100644 src/generated/resources/data/create/recipes/cutting/compat/aether_redux/jellyshroom_hyphae.json create mode 100644 src/generated/resources/data/create/recipes/cutting/compat/aether_redux/jellyshroom_stem.json create mode 100644 src/generated/resources/data/create/recipes/cutting/compat/aether_redux/sporing_blightwillow_log.json create mode 100644 src/generated/resources/data/create/recipes/cutting/compat/aether_redux/sporing_blightwillow_wood.json create mode 100644 src/generated/resources/data/create/recipes/cutting/compat/aether_redux/stripped_blightwillow_log.json create mode 100644 src/generated/resources/data/create/recipes/cutting/compat/aether_redux/stripped_blightwillow_wood.json create mode 100644 src/generated/resources/data/create/recipes/cutting/compat/aether_redux/stripped_cloudcap_hyphae.json create mode 100644 src/generated/resources/data/create/recipes/cutting/compat/aether_redux/stripped_cloudcap_stem.json create mode 100644 src/generated/resources/data/create/recipes/cutting/compat/aether_redux/stripped_crystal_log.json create mode 100644 src/generated/resources/data/create/recipes/cutting/compat/aether_redux/stripped_crystal_wood.json create mode 100644 src/generated/resources/data/create/recipes/cutting/compat/aether_redux/stripped_fieldsproot_log.json create mode 100644 src/generated/resources/data/create/recipes/cutting/compat/aether_redux/stripped_fieldsproot_wood.json create mode 100644 src/generated/resources/data/create/recipes/cutting/compat/aether_redux/stripped_glacia_log.json create mode 100644 src/generated/resources/data/create/recipes/cutting/compat/aether_redux/stripped_glacia_wood.json create mode 100644 src/generated/resources/data/create/recipes/cutting/compat/ancient_aether/highsproot_log.json create mode 100644 src/generated/resources/data/create/recipes/cutting/compat/ancient_aether/highsproot_wood.json create mode 100644 src/generated/resources/data/create/recipes/cutting/compat/ancient_aether/sakura_log.json create mode 100644 src/generated/resources/data/create/recipes/cutting/compat/ancient_aether/sakura_wood.json create mode 100644 src/generated/resources/data/create/recipes/cutting/compat/ancient_aether/stripped_highsproot_log.json create mode 100644 src/generated/resources/data/create/recipes/cutting/compat/ancient_aether/stripped_highsproot_wood.json create mode 100644 src/generated/resources/data/create/recipes/cutting/compat/ancient_aether/stripped_sakura_log.json create mode 100644 src/generated/resources/data/create/recipes/cutting/compat/ancient_aether/stripped_sakura_wood.json create mode 100644 src/generated/resources/data/create/recipes/cutting/compat/deep_aether/conberry_log.json create mode 100644 src/generated/resources/data/create/recipes/cutting/compat/deep_aether/conberry_wood.json create mode 100644 src/generated/resources/data/create/recipes/cutting/compat/deep_aether/cruderoot_log.json create mode 100644 src/generated/resources/data/create/recipes/cutting/compat/deep_aether/cruderoot_wood.json create mode 100644 src/generated/resources/data/create/recipes/cutting/compat/deep_aether/roseroot_log.json create mode 100644 src/generated/resources/data/create/recipes/cutting/compat/deep_aether/roseroot_wood.json create mode 100644 src/generated/resources/data/create/recipes/cutting/compat/deep_aether/stripped_conberry_log.json create mode 100644 src/generated/resources/data/create/recipes/cutting/compat/deep_aether/stripped_conberry_wood.json create mode 100644 src/generated/resources/data/create/recipes/cutting/compat/deep_aether/stripped_cruderoot_log.json create mode 100644 src/generated/resources/data/create/recipes/cutting/compat/deep_aether/stripped_cruderoot_wood.json create mode 100644 src/generated/resources/data/create/recipes/cutting/compat/deep_aether/stripped_roseroot_log.json create mode 100644 src/generated/resources/data/create/recipes/cutting/compat/deep_aether/stripped_roseroot_wood.json create mode 100644 src/generated/resources/data/create/recipes/cutting/compat/deep_aether/stripped_sunroot_log.json create mode 100644 src/generated/resources/data/create/recipes/cutting/compat/deep_aether/stripped_sunroot_wood.json create mode 100644 src/generated/resources/data/create/recipes/cutting/compat/deep_aether/stripped_yagroot_log.json create mode 100644 src/generated/resources/data/create/recipes/cutting/compat/deep_aether/stripped_yagroot_wood.json create mode 100644 src/generated/resources/data/create/recipes/cutting/compat/deep_aether/sunroot_log.json create mode 100644 src/generated/resources/data/create/recipes/cutting/compat/deep_aether/sunroot_wood.json create mode 100644 src/generated/resources/data/create/recipes/cutting/compat/deep_aether/yagroot_log.json create mode 100644 src/generated/resources/data/create/recipes/cutting/compat/deep_aether/yagroot_wood.json create mode 100644 src/generated/resources/data/create/recipes/emptying/compat/aether/milk_bucket.json create mode 100644 src/generated/resources/data/create/recipes/emptying/compat/aether/water_bucket.json create mode 100644 src/generated/resources/data/create/recipes/emptying/compat/deep_aether/poison_bucket.json create mode 100644 src/generated/resources/data/create/recipes/emptying/compat/deep_aether/skyroot_poison_bucket.json create mode 100644 src/generated/resources/data/create/recipes/filling/compat/aether/milk_bucket.json create mode 100644 src/generated/resources/data/create/recipes/filling/compat/aether/water_bucket.json create mode 100644 src/generated/resources/data/create/recipes/filling/compat/deep_aether/skyroot_poison_bucket.json create mode 100644 src/generated/resources/data/create/recipes/milling/compat/aether/purple_flower.json create mode 100644 src/generated/resources/data/create/recipes/milling/compat/aether/white_flower.json create mode 100644 src/generated/resources/data/create/recipes/milling/compat/aether_redux/aurum.json create mode 100644 src/generated/resources/data/create/recipes/milling/compat/aether_redux/blightshade.json create mode 100644 src/generated/resources/data/create/recipes/milling/compat/aether_redux/daggerbloom.json create mode 100644 src/generated/resources/data/create/recipes/milling/compat/aether_redux/fieldsproot_petals.json create mode 100644 src/generated/resources/data/create/recipes/milling/compat/aether_redux/flareblossom.json create mode 100644 src/generated/resources/data/create/recipes/milling/compat/aether_redux/golden_clover.json create mode 100644 src/generated/resources/data/create/recipes/milling/compat/aether_redux/infernia.json create mode 100644 src/generated/resources/data/create/recipes/milling/compat/aether_redux/iridia.json create mode 100644 src/generated/resources/data/create/recipes/milling/compat/aether_redux/lumina.json create mode 100644 src/generated/resources/data/create/recipes/milling/compat/aether_redux/luxweed.json create mode 100644 src/generated/resources/data/create/recipes/milling/compat/aether_redux/skysprouts.json create mode 100644 src/generated/resources/data/create/recipes/milling/compat/aether_redux/spirolyctil.json create mode 100644 src/generated/resources/data/create/recipes/milling/compat/aether_redux/theratip.json create mode 100644 src/generated/resources/data/create/recipes/milling/compat/aether_redux/wyndsprouts.json create mode 100644 src/generated/resources/data/create/recipes/milling/compat/aether_redux/xaelia_patch.json create mode 100644 src/generated/resources/data/create/recipes/milling/compat/aether_redux/zyatrix.json create mode 100644 src/generated/resources/data/create/recipes/milling/compat/ancient_aether/elevetia.json create mode 100644 src/generated/resources/data/create/recipes/milling/compat/ancient_aether/sky_blues.json create mode 100644 src/generated/resources/data/create/recipes/milling/compat/ancient_aether/sunset_rose.json create mode 100644 src/generated/resources/data/create/recipes/milling/compat/ancient_aether/valkyrie_clay.json create mode 100644 src/generated/resources/data/create/recipes/milling/compat/ancient_aether/wynd_thistle.json create mode 100644 src/generated/resources/data/create/recipes/milling/compat/deep_aether/aerlavender.json create mode 100644 src/generated/resources/data/create/recipes/milling/compat/deep_aether/aether_cattails.json create mode 100644 src/generated/resources/data/create/recipes/milling/compat/deep_aether/echaisy.json create mode 100644 src/generated/resources/data/create/recipes/milling/compat/deep_aether/enchanted_blossom.json create mode 100644 src/generated/resources/data/create/recipes/milling/compat/deep_aether/golden_aspess.json create mode 100644 src/generated/resources/data/create/recipes/milling/compat/deep_aether/golden_flower.json create mode 100644 src/generated/resources/data/create/recipes/milling/compat/deep_aether/iaspove.json create mode 100644 src/generated/resources/data/create/recipes/milling/compat/deep_aether/medium_grass.json create mode 100644 src/generated/resources/data/create/recipes/milling/compat/deep_aether/mini_grass.json create mode 100644 src/generated/resources/data/create/recipes/milling/compat/deep_aether/radiant_orchid.json create mode 100644 src/generated/resources/data/create/recipes/milling/compat/deep_aether/short_grass.json create mode 100644 src/generated/resources/data/create/recipes/milling/compat/deep_aether/sky_tulips.json create mode 100644 src/generated/resources/data/create/recipes/milling/compat/deep_aether/tall_aerlavender.json create mode 100644 src/generated/resources/data/create/recipes/milling/compat/deep_aether/tall_aether_cattails.json create mode 100644 src/generated/resources/data/create/recipes/milling/compat/deep_aether/tall_grass.json create mode 100644 src/generated/resources/data/create/recipes/mixing/compat/deep_aether/aether_mud.json create mode 100644 src/generated/resources/data/create/recipes/pressing/deep_aether_golden_dirt_path.json diff --git a/src/generated/resources/.cache/2d64935085b86659cb7857bad9701dbf9bab6e4c b/src/generated/resources/.cache/2d64935085b86659cb7857bad9701dbf9bab6e4c index b015606670..ed28a8ca91 100644 --- a/src/generated/resources/.cache/2d64935085b86659cb7857bad9701dbf9bab6e4c +++ b/src/generated/resources/.cache/2d64935085b86659cb7857bad9701dbf9bab6e4c @@ -1,4 +1,4 @@ -// 1.20.1 2024-09-03T11:32:11.6637155 Registrate Provider for create [Recipes, Advancements, Loot Tables, Tags (blocks), Tags (items), Tags (fluids), Tags (entity_types), Blockstates, Item models, Lang (en_us/en_ud)] +// 1.20.1 2024-10-19T23:06:59.161453 Registrate Provider for create [Recipes, Advancements, Loot Tables, Tags (blocks), Tags (items), Tags (fluids), Tags (entity_types), Blockstates, Item models, Lang (en_us/en_ud)] 60bbdf92d2ac9824ea6144955c74043a6005f79d assets/create/blockstates/acacia_window.json 6a67703c2697d81b7dc83e9d72a66f9c9ff08383 assets/create/blockstates/acacia_window_pane.json c3ae87b62e81d8e9476eccd793bb1548d74c66a1 assets/create/blockstates/adjustable_chain_gearshift.json @@ -585,8 +585,8 @@ b0d8f08968763a5f74e5cd5644377a76a9f39753 assets/create/blockstates/yellow_toolbo fe8c497aacc641c2f01cec90bba9f19e59cc2ed2 assets/create/blockstates/yellow_valve_handle.json e819e93fdcbe9fd9c050a052d2718ff3b3539365 assets/create/blockstates/zinc_block.json 64121dcb216381c83b4fe28aa361ea07c24c9ad0 assets/create/blockstates/zinc_ore.json -1195fdc4fb51659c921e2bbe744a35107f787aa2 assets/create/lang/en_ud.json -632d1aac7255fc0f4804f4df138ce9926134d2f9 assets/create/lang/en_us.json +5f729ba3f0557eb1c1923a091e06eee5ddf25c59 assets/create/lang/en_ud.json +bdd95ac05db0717d02e4dc34b6054e73d4eee640 assets/create/lang/en_us.json a97e1060e00ae701a02e39cd4ef8054cf345fac4 assets/create/models/block/acacia_window.json 103e032c0b1a0a6a27c67da8c91179a564bd281c assets/create/models/block/acacia_window_pane_noside.json fb00b627abda76ad4fea867ca57dbfadd24fffa3 assets/create/models/block/acacia_window_pane_noside_alt.json @@ -4176,18 +4176,18 @@ f675c20350ed60da4878b5d6301f02c8c05624bd data/create/tags/blocks/fan_processing_ 0592b99f657415f6546564ed8efa1fcbef07ba15 data/create/tags/blocks/fan_processing_catalysts/haunting.json 9386dd9a1d234813f9b8ae4ec88866d396aa1d37 data/create/tags/blocks/fan_processing_catalysts/smoking.json 35133e95f1c8fdd7a1c21afcc231fc0bffefb9a8 data/create/tags/blocks/fan_processing_catalysts/splashing.json -6858173c670bb593664ac3c62ded726d57d581f1 data/create/tags/blocks/fan_transparent.json +3fc1417f4bdeca026d5030e5824aad60ddfb243c data/create/tags/blocks/fan_transparent.json 2589b135c0e96ad29076569e144528fe32ea5b39 data/create/tags/blocks/girdable_tracks.json 02c0a018f2b8540dc2f1fb420172cc716552f321 data/create/tags/blocks/movable_empty_collider.json 4970078b49ddac1b1d500ed0469cedf42bdc3d35 data/create/tags/blocks/non_movable.json 06e13efbb7b0d09ff7ecd1a7dc45a0760b91ad67 data/create/tags/blocks/ore_override_stone.json a5874f73c7dc0a3ae12999e6ae8abf45bc7fb9be data/create/tags/blocks/passive_boiler_heaters.json -9bc8c13fd80bdbe7f767b91ee1a1042e9aff02b0 data/create/tags/blocks/roots.json +1769a5df18dd038e61521ca3f0724a86e3e3010f data/create/tags/blocks/roots.json 79ed9149ee2ce143114db4ccafda8a2b6a293aac data/create/tags/blocks/safe_nbt.json 79418bd729cef417b322cef9b491e7ae83317d61 data/create/tags/blocks/seats.json 5def5088f7fd31b80e6f28c1c4ea146aa9d7d15b data/create/tags/blocks/toolboxes.json 2589b135c0e96ad29076569e144528fe32ea5b39 data/create/tags/blocks/tracks.json -1b6977d9a399cf6ee042e3f8f5e64e4d3cda5489 data/create/tags/blocks/tree_attachments.json +cdff80cc11ff4640e0f4f791b0b79d1721fd6b47 data/create/tags/blocks/tree_attachments.json da739ad2160e7df4e0e5cc89587670ce5e9450c3 data/create/tags/blocks/valve_handles.json 72143286fb5cb372a0696550e2eac76ca50e6fbc data/create/tags/blocks/windmill_sails.json 58987ea71d488cc48192ceb00c00aa2903e51304 data/create/tags/blocks/wrench_pickup.json @@ -4206,8 +4206,8 @@ f43cac8216e2a9347e48cf93a43de95dd810ca20 data/create/tags/items/contraption_cont d371dfd35e49a7bef19f59c03e7f4ae20992f03d data/create/tags/items/create_ingots.json 910d0f5ccbc4c84b224eca1f1588b1695f41447b data/create/tags/items/crushed_raw_materials.json 0fa526e7e742573b603ad26b09526cf724efa1dc data/create/tags/items/deployable_drink.json -1cebeb92bd514b75d54ac6d5708047801f0501c5 data/create/tags/items/modded_stripped_logs.json -586f8fc5a8b8559c9dc0017e13c78ad918688fae data/create/tags/items/modded_stripped_wood.json +aa58c2849e36c848dd574489982f430cfdeb9cbd data/create/tags/items/modded_stripped_logs.json +353422157e4cfe4e10c1f562a3164b13eb3d6470 data/create/tags/items/modded_stripped_wood.json 695d75b352fd190b303c724d1aaee9bb786a903b data/create/tags/items/pressurized_air_sources.json 2cd3adffd8b151354df137a990dcb97996a665bb data/create/tags/items/sandpaper.json 79418bd729cef417b322cef9b491e7ae83317d61 data/create/tags/items/seats.json @@ -4232,7 +4232,7 @@ e22493305e0cebfb7ededae122e19ee9dd24fc9d data/create/tags/items/stone_types/scor 5def5088f7fd31b80e6f28c1c4ea146aa9d7d15b data/create/tags/items/toolboxes.json 2589b135c0e96ad29076569e144528fe32ea5b39 data/create/tags/items/tracks.json a5b5711d1798473a9b25db5b7f749570ed0a2769 data/create/tags/items/upgrade_aquatic/coral.json -22c744a157399a21492bcd8b211578f8f504e653 data/create/tags/items/upright_on_belt.json +a18334926684338f86aec4e00cac797a1b99534a data/create/tags/items/upright_on_belt.json da739ad2160e7df4e0e5cc89587670ce5e9450c3 data/create/tags/items/valve_handles.json c59c9fc0cdd45de659aa8023d36f9decb90f708c data/create/tags/items/vanilla_stripped_logs.json 64441ac1daa64c81601b94b82b21c0ee862b6344 data/create/tags/items/vanilla_stripped_wood.json diff --git a/src/generated/resources/.cache/b256105d8411632b0d585496ea8944a751a08034 b/src/generated/resources/.cache/b256105d8411632b0d585496ea8944a751a08034 index 7cbe41f318..773c7fc933 100644 --- a/src/generated/resources/.cache/b256105d8411632b0d585496ea8944a751a08034 +++ b/src/generated/resources/.cache/b256105d8411632b0d585496ea8944a751a08034 @@ -1,4 +1,4 @@ -// 1.20.1 2024-10-09T12:24:59.1833995 Create's Processing Recipes +// 1.20.1 2024-10-19T21:58:24.0622958 Create's Processing Recipes 3c94326fb730f68c1e44fe1e2ef09c9db6ffd92b data/create/recipes/compacting/andesite_from_flint.json 8d3d5b31f3601b9f681ff710e0545a483a1494c6 data/create/recipes/compacting/blaze_cake.json 8bd7f4e3a686ab520b2d55594d2018d0e9a50c91 data/create/recipes/compacting/chocolate.json @@ -15,6 +15,7 @@ c444abdd432670f6a2b508c513302e119cb07186 data/create/recipes/crushing/asurine_re 29e7e74108755e0a07b1d3d1e8d4dcaf2b401572 data/create/recipes/crushing/coal_ore.json d9a48b3aa36cfe4f792a31fd3ee50b442c1177f9 data/create/recipes/crushing/compat/aether/ambrosium_ore.json 81bdb03461bec6f8ca1201caa93805a751d7cda6 data/create/recipes/crushing/compat/aether/zanite_ore.json +6cccceaa8bd26d39e730d91e216a256ef48f49cd data/create/recipes/crushing/compat/ancient_aether/quartz_ore.json 73914b149bbd72251c1bd9a54cf6d087f6b2ba0b data/create/recipes/crushing/compat/byg/ametrine_ore.json d468d9fbd206bd78dc3cc37ce6fcccbc3a89bc5c data/create/recipes/crushing/compat/byg/anthracite_ore.json 3481a8838049addc6d3514615fccab01a7eda830 data/create/recipes/crushing/compat/byg/blue_nether_gold_ore.json @@ -26,6 +27,7 @@ b4e8eed87747da8dfdfe2ad3ffd8534b900b38ad data/create/recipes/crushing/compat/byg 9c6b0c1f78c5027b4e781f3126a734b65cb40f46 data/create/recipes/crushing/compat/byg/lignite_ore.json 06bae2f87dfe431c1f5df9675de5ce2a6aac7802 data/create/recipes/crushing/compat/byg/pervaded_netherrack.json a7177964fe7921dbca27197c6271d6d8c5264665 data/create/recipes/crushing/compat/byg/red_rock.json +834bb7ff61aa3ca7a8c5062fae993c4e3cd27136 data/create/recipes/crushing/compat/deep_aether/skyjade_ore.json 808305f43b6a4d3fe2030ba55a86c510346ff164 data/create/recipes/crushing/compat/druidcraft/amber_ore.json ae0691d4885a8b67c1ba1f7f3b4f8fc6db9de403 data/create/recipes/crushing/compat/druidcraft/fiery_glass_ore.json 375daf4d1a5d847a253ce817b8fe99d47526cbb5 data/create/recipes/crushing/compat/druidcraft/moonstone_ore.json @@ -162,6 +164,44 @@ cdb26cd91feeda5901f31f57c16517dda5287810 data/create/recipes/cutting/andesite_al 71c3a093c849a99fbaef8772114ac9305627f2c1 data/create/recipes/cutting/birch_wood.json 31a1713f8bc5577b3fcf2fcfd2d42dac145f9560 data/create/recipes/cutting/cherry_log.json 0f54293540ad75e6395452253f4ab5c8e5166e93 data/create/recipes/cutting/cherry_wood.json +cc8b3de42fc5236db9eb51ab4f81cdc2186bb9af data/create/recipes/cutting/compat/aether/golden_oak_log.json +2857293080dabab340d0b18b36d9299d7e8cad06 data/create/recipes/cutting/compat/aether/golden_oak_wood.json +5c8f9f15557a3476d468632ea3cbf61bbc52764f data/create/recipes/cutting/compat/aether/skyroot_log.json +89232e19be04f5feba289ff3a7170e49716654ce data/create/recipes/cutting/compat/aether/skyroot_wood.json +36a2992619667e878795de798f69f58c0096774d data/create/recipes/cutting/compat/aether/stripped_skyroot_log.json +04bcc459ae9c31b17117846aa16a9e0eb183b4cd data/create/recipes/cutting/compat/aether/stripped_skyroot_wood.json +7299bca9556007783cbbe285d86a71f57cc9ab95 data/create/recipes/cutting/compat/aether_redux/blightwillow_log.json +58c8e6e022525d7f0ae3ca07aaafc2d488690b1e data/create/recipes/cutting/compat/aether_redux/blightwillow_wood.json +9b92220a4ab4754ef4bec6e9d245758fad3abfdd data/create/recipes/cutting/compat/aether_redux/cloudcap_hyphae.json +84b46731bab6d3e243dc8b341959f4ef402e2178 data/create/recipes/cutting/compat/aether_redux/cloudcap_stem.json +d1afe99f9d8da4afd819a14241daaf5e49f91604 data/create/recipes/cutting/compat/aether_redux/crystal_log.json +c7f6a1279a378a9f5c54b5abf8d8d7372735a422 data/create/recipes/cutting/compat/aether_redux/crystal_wood.json +c10aa4373bf4c1817fe30243f18a7a62675b59f4 data/create/recipes/cutting/compat/aether_redux/fieldsproot_log.json +0ef26b7ca64a1acd87fef1af6e1c646021a891a0 data/create/recipes/cutting/compat/aether_redux/fieldsproot_wood.json +73c32f833bf1791a71eaf9700eecff3a9fea13fe data/create/recipes/cutting/compat/aether_redux/glacia_log.json +7be3f57f070460f2aafbf68c5b2caa0ef742402d data/create/recipes/cutting/compat/aether_redux/glacia_wood.json +54ad4cd8ea7e41e8e2a7ecb964dd22afdbf1cf9c data/create/recipes/cutting/compat/aether_redux/jellyshroom_hyphae.json +a3b153da69d00faadbe0b1800ddf5a77cf0a2899 data/create/recipes/cutting/compat/aether_redux/jellyshroom_stem.json +263d8bdf83a310f83ec76ec95b5177d550d842ac data/create/recipes/cutting/compat/aether_redux/sporing_blightwillow_log.json +75e4569b22ab71e45d2289451c9ef8093a7d2062 data/create/recipes/cutting/compat/aether_redux/sporing_blightwillow_wood.json +36f2c7d078c098fc42b100d6a57d3f59302dd818 data/create/recipes/cutting/compat/aether_redux/stripped_blightwillow_log.json +5269063068b66f96d8919a61fe4562fd93076546 data/create/recipes/cutting/compat/aether_redux/stripped_blightwillow_wood.json +54296f21e081299ce5316818e0493b9ff2047ad5 data/create/recipes/cutting/compat/aether_redux/stripped_cloudcap_hyphae.json +f5923cc9d481cb35a0e8825452083c960798bb42 data/create/recipes/cutting/compat/aether_redux/stripped_cloudcap_stem.json +0512511c86f50abab74dbd5549b78dba73978943 data/create/recipes/cutting/compat/aether_redux/stripped_crystal_log.json +f2449e6a832825a5e9fe7f156b3e4fc684de2a64 data/create/recipes/cutting/compat/aether_redux/stripped_crystal_wood.json +694181624226e2376d0d4d06a5e62552ca3a08f6 data/create/recipes/cutting/compat/aether_redux/stripped_fieldsproot_log.json +3a1360a4165f4cbf4a6d8ed55774ad5a00f9f8ff data/create/recipes/cutting/compat/aether_redux/stripped_fieldsproot_wood.json +a55e891c8da3b3b157d62296b4d8e6aad0852900 data/create/recipes/cutting/compat/aether_redux/stripped_glacia_log.json +b8b8c2589b9ba8b728f459e9b35dd0638902786b data/create/recipes/cutting/compat/aether_redux/stripped_glacia_wood.json +980e2179ea26e2270ec754afe939f2831ac38207 data/create/recipes/cutting/compat/ancient_aether/highsproot_log.json +890a542adcd7ac1face7008c5824f598870b17c0 data/create/recipes/cutting/compat/ancient_aether/highsproot_wood.json +adab032d27468f6f2dd80f0d7cd1d65545f2c0c4 data/create/recipes/cutting/compat/ancient_aether/sakura_log.json +fc6f706a6a27de1e9fa6627a515357c2c10d90b0 data/create/recipes/cutting/compat/ancient_aether/sakura_wood.json +786a417e2ea0952522b5a913785accd3e6adbcca data/create/recipes/cutting/compat/ancient_aether/stripped_highsproot_log.json +dd19b5ecc8b91780fc100cabdc82ee5ee3dba18f data/create/recipes/cutting/compat/ancient_aether/stripped_highsproot_wood.json +69979aed592dbf32471519eb48bce268708e72f6 data/create/recipes/cutting/compat/ancient_aether/stripped_sakura_log.json +a0c6514645bb732ce0ab7c9810a0ebac4c9cb4d9 data/create/recipes/cutting/compat/ancient_aether/stripped_sakura_wood.json 4f756e256a7814e2b9a6632d38633bb78c5046cd data/create/recipes/cutting/compat/architects_palette/stripped_twisted_log.json 310dfb6c7e7649c0ede306fda71459e7f2bc8c7e data/create/recipes/cutting/compat/architects_palette/stripped_twisted_wood.json 8645e8ee47b0a6a432f85b7f2e07957e21adeb70 data/create/recipes/cutting/compat/architects_palette/twisted_log.json @@ -396,6 +436,26 @@ f4283de13917784d85c0ba84f68424ec8b69545f data/create/recipes/cutting/compat/byg/ 88b328cf0c0a02f296056abb423e4f3745e5ab4d data/create/recipes/cutting/compat/byg/witch_hazel_wood.json 31a331b2294c726f0e6b4573b1db14c2423116b2 data/create/recipes/cutting/compat/byg/zelkova_log.json f249713773128375a0869a8df3205b384e2b54f4 data/create/recipes/cutting/compat/byg/zelkova_wood.json +20e6e40a9026b69e0f52590a33f9a790e363b483 data/create/recipes/cutting/compat/deep_aether/conberry_log.json +f6191cc04a73f04267a9b88f7346c26499d99291 data/create/recipes/cutting/compat/deep_aether/conberry_wood.json +bd6277d709f8652e455690d69b3c23aae39ffc3e data/create/recipes/cutting/compat/deep_aether/cruderoot_log.json +39f7acada24288971f9952a60c3d3ce9d01ddad8 data/create/recipes/cutting/compat/deep_aether/cruderoot_wood.json +235251ecc686912110e95b66712d0363282f812f data/create/recipes/cutting/compat/deep_aether/roseroot_log.json +34d9c9927accd1ea74b58723ea0dc957c25153ee data/create/recipes/cutting/compat/deep_aether/roseroot_wood.json +869389fb72cfeffc81cb85ec0127257b8e56f78a data/create/recipes/cutting/compat/deep_aether/stripped_conberry_log.json +c745a929e3a3c872b29c4db814649ec962ad5ff6 data/create/recipes/cutting/compat/deep_aether/stripped_conberry_wood.json +ec2a9b2a488b99361c6a1c360ff27913733fd65f data/create/recipes/cutting/compat/deep_aether/stripped_cruderoot_log.json +3e6653c28160935ea2dd4a6a46256deec11f523c data/create/recipes/cutting/compat/deep_aether/stripped_cruderoot_wood.json +c3929865c526a94c39278f6c27537d4a19f17947 data/create/recipes/cutting/compat/deep_aether/stripped_roseroot_log.json +658f2fa81456f7978bf6bba885b12245a8b6d3da data/create/recipes/cutting/compat/deep_aether/stripped_roseroot_wood.json +10c0830c74cdfeddf3894c3b50d2529122b2a68a data/create/recipes/cutting/compat/deep_aether/stripped_sunroot_log.json +76ba4365d4520f795594c9613e2bb28bbd3d9574 data/create/recipes/cutting/compat/deep_aether/stripped_sunroot_wood.json +edb86380584c729f44574fd7e2beafad3336f457 data/create/recipes/cutting/compat/deep_aether/stripped_yagroot_log.json +3d54849f75866988fa1331784b954b5a0df44de0 data/create/recipes/cutting/compat/deep_aether/stripped_yagroot_wood.json +fc635cc869b8d9cde64009968bf7a6eecfded337 data/create/recipes/cutting/compat/deep_aether/sunroot_log.json +e2f701108a6e95be9f5aee5af66749930079a68c data/create/recipes/cutting/compat/deep_aether/sunroot_wood.json +099b1613ad1823348307461d1c66710c2982c1d5 data/create/recipes/cutting/compat/deep_aether/yagroot_log.json +bc3a8bab1260daf07bfb95b16ba34f1b407df470 data/create/recipes/cutting/compat/deep_aether/yagroot_wood.json 363da3d703f57ccac27632b573734a940799374b data/create/recipes/cutting/compat/ecologics/azalea_log.json 052c45bc088143aae8508af521a8f91a2c263459 data/create/recipes/cutting/compat/ecologics/azalea_wood.json 10b5a67570271c02e12d3d46e48c2ed8fe2fd2fb data/create/recipes/cutting/compat/ecologics/coconut_log.json @@ -706,7 +766,11 @@ d0fc937a3e7ae42fb1891b7b87adb2b57292e01d data/create/recipes/deploying/waxed_wea 733dd94b46186c19fdecced5d8231e46ea612cf2 data/create/recipes/deploying/waxed_weathered_cut_copper_slab_from_adding_wax.json cd4c050e6ad9227bf293768f2d8b965c0ecafeab data/create/recipes/deploying/waxed_weathered_cut_copper_stairs_from_adding_wax.json 6a9fa669a5cbdc2406ecc5eaf6992e0e8fa83b88 data/create/recipes/emptying/builders_tea.json +6087155b0621d53315536cf048583545ffbb5fea data/create/recipes/emptying/compat/aether/milk_bucket.json +d0e25dd0209cf1ff9bc42d9c216e5635a2369e7d data/create/recipes/emptying/compat/aether/water_bucket.json 0b20bddac967edea53442c05c59ccf3306e9eb76 data/create/recipes/emptying/compat/alexsmobs/lava_bottle.json +0a0c27d12da11be6b77973cbf9ed0bf4a2a4427e data/create/recipes/emptying/compat/deep_aether/poison_bucket.json +d497d99fda84724250e57184de361b522b9bc7c1 data/create/recipes/emptying/compat/deep_aether/skyroot_poison_bucket.json 5fb7e705b53ed84b607858be1db6a6d2765bea9c data/create/recipes/emptying/compat/farmersdelight/milk_bottle.json 054bd7804a710c498f605b82fd7d5055a4762829 data/create/recipes/emptying/compat/neapolitan/milk_bottle.json ab35f7d885d8f2c8ccf562938ac804f6cb4c38ad data/create/recipes/emptying/honey_bottle.json @@ -714,8 +778,11 @@ b4e78bf89677ff211c9a740231836ae0598cf0d8 data/create/recipes/filling/blaze_cake. aea7837e33bfcbdd1e0b4386372b6595fd00ad1d data/create/recipes/filling/builders_tea.json 0c69ff301d149af8d36be10a1e49b0be53a21a49 data/create/recipes/filling/chocolate_glazed_berries.json 2d3b2d7c28fc0ea9f18be73d9523456b5c5946da data/create/recipes/filling/compat/aether/aether_grass_block.json +15d3592a9c442182c980b00ea4a2d1eaf62ffeea data/create/recipes/filling/compat/aether/milk_bucket.json +5fb53669c7904cd0b0f0d15098c05a0ff4ac7f4e data/create/recipes/filling/compat/aether/water_bucket.json f158f5e509b43746871722edf802984e2b9cc024 data/create/recipes/filling/compat/alexsmobs/lava_bottle.json 5770b60bd7e89f2cac74df71b463a1101601d86f data/create/recipes/filling/compat/byg/lush_grass_block.json +fa4050b344207da164d551b644c4a1198997a797 data/create/recipes/filling/compat/deep_aether/skyroot_poison_bucket.json 1280689ba81877c6583c6941ed307ca35d4f00e4 data/create/recipes/filling/compat/farmersdelight/milk_bottle.json fd578bb1e05901d0b959b1f445273619b55cde57 data/create/recipes/filling/compat/neapolitan/milk_bottle.json 3f0f458c0c044c7b1c4e203d7394d890ba286d86 data/create/recipes/filling/compat/regions_unexplored/peat_grass_block.json @@ -775,6 +842,29 @@ de5a7460348c3301381dd2635ac433a473bec04a data/create/recipes/milling/compat/ae2/ 42151b6f50df8e05a7399eaa386369474a5a618c data/create/recipes/milling/compat/ae2/ender_pearl.json b383c64d2559cd757b84fd5651f77c9ea95ebb00 data/create/recipes/milling/compat/ae2/fluix_crystal.json 880cfc22f510351e54a82242d6bc86acab4c3c92 data/create/recipes/milling/compat/ae2/sky_stone_block.json +f0001aeeb8169fb68337b845f484ef420ac1c0b2 data/create/recipes/milling/compat/aether/purple_flower.json +4a65fbbfbcbdac443993b5aeee270a12213f1083 data/create/recipes/milling/compat/aether/white_flower.json +b254a24f0035a2077675e3de2865b686eb72c63a data/create/recipes/milling/compat/aether_redux/aurum.json +6849b110f5825de0db95cae3deabeacc35493233 data/create/recipes/milling/compat/aether_redux/blightshade.json +70379b33059bfa90f8c0fc99a546790826295efd data/create/recipes/milling/compat/aether_redux/daggerbloom.json +761109c6215f030e329c8ea7988b35f85506319c data/create/recipes/milling/compat/aether_redux/fieldsproot_petals.json +e448714718d21fd7b4426a7eba6157209e3889ee data/create/recipes/milling/compat/aether_redux/flareblossom.json +9019c715b053181a9e82c900a883822f6b61da68 data/create/recipes/milling/compat/aether_redux/golden_clover.json +abcde7371f3fe4f1c6bd4006a685cef23e7cb047 data/create/recipes/milling/compat/aether_redux/infernia.json +18cb040a863d5d20320739b9fb838814d189837e data/create/recipes/milling/compat/aether_redux/iridia.json +639d5ef20c8b0b0fe60fdd2dd7e4dca1fcdac593 data/create/recipes/milling/compat/aether_redux/lumina.json +1cdc9a0be783221dacf03c6e7d7604bec1093b79 data/create/recipes/milling/compat/aether_redux/luxweed.json +2588b7c095a5483320545a9f39837aa4c028d353 data/create/recipes/milling/compat/aether_redux/skysprouts.json +645e91c1c27d0019aeb7025ddefe4c5b999d4c52 data/create/recipes/milling/compat/aether_redux/spirolyctil.json +f5d706d9031b64091e648adfa58ae523ca795cf2 data/create/recipes/milling/compat/aether_redux/theratip.json +bddb3a7e2d3cc6f1b6d3dca64e5fd3865cb20e8f data/create/recipes/milling/compat/aether_redux/wyndsprouts.json +7dd16c7ac7f0168e94b0c0d6f8a7631b3f1432ab data/create/recipes/milling/compat/aether_redux/xaelia_patch.json +c9dfdbf0ce6fd276d9be13f93a70cb7f39276764 data/create/recipes/milling/compat/aether_redux/zyatrix.json +9dfa3f5925ed86c44c7d15794701e8952aed3646 data/create/recipes/milling/compat/ancient_aether/elevetia.json +8464d55a2c378e846988bf1286b6fa85695164f2 data/create/recipes/milling/compat/ancient_aether/sky_blues.json +1ab1aede8c571d0711aa040f143c8d71caa38ab0 data/create/recipes/milling/compat/ancient_aether/sunset_rose.json +474616f5d930ddf8c11dcf7a4c2e567c50a30e90 data/create/recipes/milling/compat/ancient_aether/valkyrie_clay.json +2518f6143501374cd7c2ac1a7b978f31f699625f data/create/recipes/milling/compat/ancient_aether/wynd_thistle.json d6c091225197381abae8bdba35318aa3a8bde1ad data/create/recipes/milling/compat/atmospheric/gilia.json 9dce11179bf92dc0519fad4b41c944a25226abff data/create/recipes/milling/compat/atmospheric/hot_monkey_brush.json fd427a15577f3ea5612667e6b148ff253d2fd021 data/create/recipes/milling/compat/atmospheric/scalding_monkey_brush.json @@ -868,6 +958,21 @@ eb9606bbb2e4c6fb82b6607c8d5c23834d9e44a8 data/create/recipes/milling/compat/byg/ 1732969a11d677b825758f6c4af2cdbcdc365898 data/create/recipes/milling/compat/byg/winter_scilla.json 9266eaf6e2259fccb6e2aa57a9e19fc1faeb53fe data/create/recipes/milling/compat/byg/yellow_daffodil.json fda00f49b9a5758ee7d24f2aeab81a3cc690544a data/create/recipes/milling/compat/byg/yellow_tulip.json +de7e32322d85317ba0701164cc4060c9d47d252d data/create/recipes/milling/compat/deep_aether/aerlavender.json +7e370e6e977cb08cb6f0cee7823eb815155d7169 data/create/recipes/milling/compat/deep_aether/aether_cattails.json +f63fe4c4d47daf39f6097e9b0325fde0aee77f8a data/create/recipes/milling/compat/deep_aether/echaisy.json +3692a1676806c5ced1e62989343aef37013f9da1 data/create/recipes/milling/compat/deep_aether/enchanted_blossom.json +9c19cada7ee65801eabe578cd9eec9255c227c71 data/create/recipes/milling/compat/deep_aether/golden_aspess.json +bb5bfece9fadfd95d42fab5ff21df745cb82fb83 data/create/recipes/milling/compat/deep_aether/golden_flower.json +0a9e4d848d18badd38749a7b6bf38f81196987aa data/create/recipes/milling/compat/deep_aether/iaspove.json +a1762f0c988ffb9c4060fdbc43e9bd1ed05ac0cd data/create/recipes/milling/compat/deep_aether/medium_grass.json +9900930dea690e2521f093ed20d6f8d667e1e250 data/create/recipes/milling/compat/deep_aether/mini_grass.json +d1b1439701e35b0910e070b9528a7536134af1e0 data/create/recipes/milling/compat/deep_aether/radiant_orchid.json +fc04fb70250c4309f2b932ae5f59595afd040c17 data/create/recipes/milling/compat/deep_aether/short_grass.json +30081ff2e3a7a66e1796580fc99625fe729f8362 data/create/recipes/milling/compat/deep_aether/sky_tulips.json +cddc00587741bcf98c921d4fd1e4586531f0c1a6 data/create/recipes/milling/compat/deep_aether/tall_aerlavender.json +ea9cf26f3d537bf8dd6fd1f8819ecceba6939211 data/create/recipes/milling/compat/deep_aether/tall_aether_cattails.json +ed1c8fccf084d5697a7d095aef58bd304b322848 data/create/recipes/milling/compat/deep_aether/tall_grass.json 2e6a7a1b0e8ab1d6e514a30a21d47b404cfdcd45 data/create/recipes/milling/compat/druidcraft/lavender.json 5be32cdd48cf7d9e3f8273fc3479d559070b9872 data/create/recipes/milling/compat/environmental/bird_of_paradise.json 102130e75ea8f2b8c99ad9641d293a4e588912cf data/create/recipes/milling/compat/environmental/bluebell.json @@ -971,6 +1076,7 @@ d06c1d0362dccc4e5f8b22f851dc8316b35c06b0 data/create/recipes/mixing/brass_ingot. 840a9008d4531425beadfcf224d21e938acc4502 data/create/recipes/mixing/chocolate.json e7b86d4ca5de2df474794424d93b447e5f9dcdc3 data/create/recipes/mixing/chocolate_melting.json 39e832016fa5e360434271505d09ced17a40e7eb data/create/recipes/mixing/compat/ae2/fluix_crystal.json +193e890056528264d70ce7c5fc2981e224bf0271 data/create/recipes/mixing/compat/deep_aether/aether_mud.json f0648e6b963e1ac1c1756f769988e779963eb1a1 data/create/recipes/mixing/compat/regions_unexplored/peat_mud.json a2cf143f409a26709ad119f151c611331dca960c data/create/recipes/mixing/compat/regions_unexplored/silt_mud.json 4cf9a0979fb6401c51c763d71f0bb53ea2c8c32b data/create/recipes/mixing/dough_by_mixing.json @@ -1000,6 +1106,7 @@ e049a1c6951c93a53122fc5adb27bee35ca62786 data/create/recipes/pressing/compat/inf 955613e743a216b10d54f94b89b23166adb49a40 data/create/recipes/pressing/compat/vampirism/cursed_earth_path.json 4ce4f4b71058d04be148cc2ad2318abe27a58359 data/create/recipes/pressing/copper_ingot.json 24bb356954866c69a279a9f0435035d8bafdddec data/create/recipes/pressing/cursed_earth_path_from_grass.json +bfed988091701a749d337c2d78e9fb820b8d9aa0 data/create/recipes/pressing/deep_aether_golden_dirt_path.json 744e1a66857f20a094ba02a3e3613210a815493e data/create/recipes/pressing/gold_ingot.json fb105ac920ce9dc0b883bfa40029b69709bceb38 data/create/recipes/pressing/iron_ingot.json daf5c0c9e3f13d2004d53c54f4c1c36ae098d1ae data/create/recipes/pressing/path.json diff --git a/src/generated/resources/data/create/recipes/crushing/compat/ancient_aether/quartz_ore.json b/src/generated/resources/data/create/recipes/crushing/compat/ancient_aether/quartz_ore.json new file mode 100644 index 0000000000..4c64599060 --- /dev/null +++ b/src/generated/resources/data/create/recipes/crushing/compat/ancient_aether/quartz_ore.json @@ -0,0 +1,32 @@ +{ + "type": "create:crushing", + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "ancient_aether" + } + ], + "ingredients": [ + { + "item": "ancient_aether:aether_quartz_ore" + } + ], + "processingTime": 150, + "results": [ + { + "item": "minecraft:quartz" + }, + { + "chance": 0.75, + "item": "minecraft:quartz" + }, + { + "chance": 0.125, + "item": "aether:holystone" + }, + { + "chance": 0.75, + "item": "create:experience_nugget" + } + ] +} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/crushing/compat/deep_aether/skyjade_ore.json b/src/generated/resources/data/create/recipes/crushing/compat/deep_aether/skyjade_ore.json new file mode 100644 index 0000000000..d6db2e0d8a --- /dev/null +++ b/src/generated/resources/data/create/recipes/crushing/compat/deep_aether/skyjade_ore.json @@ -0,0 +1,32 @@ +{ + "type": "create:crushing", + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "deep_aether" + } + ], + "ingredients": [ + { + "item": "deep_aether:skyjade_ore" + } + ], + "processingTime": 150, + "results": [ + { + "item": "deep_aether:skyjade" + }, + { + "chance": 0.75, + "item": "deep_aether:skyjade" + }, + { + "chance": 0.125, + "item": "aether:holystone" + }, + { + "chance": 0.75, + "item": "create:experience_nugget" + } + ] +} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/cutting/compat/aether/golden_oak_log.json b/src/generated/resources/data/create/recipes/cutting/compat/aether/golden_oak_log.json new file mode 100644 index 0000000000..63e4c15089 --- /dev/null +++ b/src/generated/resources/data/create/recipes/cutting/compat/aether/golden_oak_log.json @@ -0,0 +1,20 @@ +{ + "type": "create:cutting", + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "aether" + } + ], + "ingredients": [ + { + "item": "aether:golden_oak_log" + } + ], + "processingTime": 50, + "results": [ + { + "item": "aether:stripped_skyroot_log" + } + ] +} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/cutting/compat/aether/golden_oak_wood.json b/src/generated/resources/data/create/recipes/cutting/compat/aether/golden_oak_wood.json new file mode 100644 index 0000000000..c31f2ff8b5 --- /dev/null +++ b/src/generated/resources/data/create/recipes/cutting/compat/aether/golden_oak_wood.json @@ -0,0 +1,20 @@ +{ + "type": "create:cutting", + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "aether" + } + ], + "ingredients": [ + { + "item": "aether:golden_oak_wood" + } + ], + "processingTime": 50, + "results": [ + { + "item": "aether:stripped_skyroot_wood" + } + ] +} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/cutting/compat/aether/skyroot_log.json b/src/generated/resources/data/create/recipes/cutting/compat/aether/skyroot_log.json new file mode 100644 index 0000000000..9afe2a0caf --- /dev/null +++ b/src/generated/resources/data/create/recipes/cutting/compat/aether/skyroot_log.json @@ -0,0 +1,20 @@ +{ + "type": "create:cutting", + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "aether" + } + ], + "ingredients": [ + { + "item": "aether:skyroot_log" + } + ], + "processingTime": 50, + "results": [ + { + "item": "aether:stripped_skyroot_log" + } + ] +} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/cutting/compat/aether/skyroot_wood.json b/src/generated/resources/data/create/recipes/cutting/compat/aether/skyroot_wood.json new file mode 100644 index 0000000000..818637e80c --- /dev/null +++ b/src/generated/resources/data/create/recipes/cutting/compat/aether/skyroot_wood.json @@ -0,0 +1,20 @@ +{ + "type": "create:cutting", + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "aether" + } + ], + "ingredients": [ + { + "item": "aether:skyroot_wood" + } + ], + "processingTime": 50, + "results": [ + { + "item": "aether:stripped_skyroot_wood" + } + ] +} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/cutting/compat/aether/stripped_skyroot_log.json b/src/generated/resources/data/create/recipes/cutting/compat/aether/stripped_skyroot_log.json new file mode 100644 index 0000000000..2201bf59de --- /dev/null +++ b/src/generated/resources/data/create/recipes/cutting/compat/aether/stripped_skyroot_log.json @@ -0,0 +1,21 @@ +{ + "type": "create:cutting", + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "aether" + } + ], + "ingredients": [ + { + "item": "aether:stripped_skyroot_log" + } + ], + "processingTime": 50, + "results": [ + { + "count": 6, + "item": "aether:skyroot_planks" + } + ] +} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/cutting/compat/aether/stripped_skyroot_wood.json b/src/generated/resources/data/create/recipes/cutting/compat/aether/stripped_skyroot_wood.json new file mode 100644 index 0000000000..38ba5ad9a3 --- /dev/null +++ b/src/generated/resources/data/create/recipes/cutting/compat/aether/stripped_skyroot_wood.json @@ -0,0 +1,21 @@ +{ + "type": "create:cutting", + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "aether" + } + ], + "ingredients": [ + { + "item": "aether:stripped_skyroot_wood" + } + ], + "processingTime": 50, + "results": [ + { + "count": 6, + "item": "aether:skyroot_planks" + } + ] +} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/cutting/compat/aether_redux/blightwillow_log.json b/src/generated/resources/data/create/recipes/cutting/compat/aether_redux/blightwillow_log.json new file mode 100644 index 0000000000..5b76741c0d --- /dev/null +++ b/src/generated/resources/data/create/recipes/cutting/compat/aether_redux/blightwillow_log.json @@ -0,0 +1,20 @@ +{ + "type": "create:cutting", + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "aether_redux" + } + ], + "ingredients": [ + { + "item": "aether_redux:blightwillow_log" + } + ], + "processingTime": 50, + "results": [ + { + "item": "aether_redux:stripped_blightwillow_log" + } + ] +} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/cutting/compat/aether_redux/blightwillow_wood.json b/src/generated/resources/data/create/recipes/cutting/compat/aether_redux/blightwillow_wood.json new file mode 100644 index 0000000000..46f59aa55c --- /dev/null +++ b/src/generated/resources/data/create/recipes/cutting/compat/aether_redux/blightwillow_wood.json @@ -0,0 +1,20 @@ +{ + "type": "create:cutting", + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "aether_redux" + } + ], + "ingredients": [ + { + "item": "aether_redux:blightwillow_wood" + } + ], + "processingTime": 50, + "results": [ + { + "item": "aether_redux:stripped_blightwillow_wood" + } + ] +} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/cutting/compat/aether_redux/cloudcap_hyphae.json b/src/generated/resources/data/create/recipes/cutting/compat/aether_redux/cloudcap_hyphae.json new file mode 100644 index 0000000000..5dbb25ac38 --- /dev/null +++ b/src/generated/resources/data/create/recipes/cutting/compat/aether_redux/cloudcap_hyphae.json @@ -0,0 +1,20 @@ +{ + "type": "create:cutting", + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "aether_redux" + } + ], + "ingredients": [ + { + "item": "aether_redux:cloudcap_hyphae" + } + ], + "processingTime": 50, + "results": [ + { + "item": "aether_redux:stripped_cloudcap_hyphae" + } + ] +} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/cutting/compat/aether_redux/cloudcap_stem.json b/src/generated/resources/data/create/recipes/cutting/compat/aether_redux/cloudcap_stem.json new file mode 100644 index 0000000000..0f70227d6d --- /dev/null +++ b/src/generated/resources/data/create/recipes/cutting/compat/aether_redux/cloudcap_stem.json @@ -0,0 +1,20 @@ +{ + "type": "create:cutting", + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "aether_redux" + } + ], + "ingredients": [ + { + "item": "aether_redux:cloudcap_stem" + } + ], + "processingTime": 50, + "results": [ + { + "item": "aether_redux:stripped_cloudcap_stem" + } + ] +} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/cutting/compat/aether_redux/crystal_log.json b/src/generated/resources/data/create/recipes/cutting/compat/aether_redux/crystal_log.json new file mode 100644 index 0000000000..8ebad145cd --- /dev/null +++ b/src/generated/resources/data/create/recipes/cutting/compat/aether_redux/crystal_log.json @@ -0,0 +1,20 @@ +{ + "type": "create:cutting", + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "aether_redux" + } + ], + "ingredients": [ + { + "item": "aether_redux:crystal_log" + } + ], + "processingTime": 50, + "results": [ + { + "item": "aether_redux:stripped_crystal_log" + } + ] +} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/cutting/compat/aether_redux/crystal_wood.json b/src/generated/resources/data/create/recipes/cutting/compat/aether_redux/crystal_wood.json new file mode 100644 index 0000000000..230700390c --- /dev/null +++ b/src/generated/resources/data/create/recipes/cutting/compat/aether_redux/crystal_wood.json @@ -0,0 +1,20 @@ +{ + "type": "create:cutting", + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "aether_redux" + } + ], + "ingredients": [ + { + "item": "aether_redux:crystal_wood" + } + ], + "processingTime": 50, + "results": [ + { + "item": "aether_redux:stripped_crystal_wood" + } + ] +} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/cutting/compat/aether_redux/fieldsproot_log.json b/src/generated/resources/data/create/recipes/cutting/compat/aether_redux/fieldsproot_log.json new file mode 100644 index 0000000000..259064ea8b --- /dev/null +++ b/src/generated/resources/data/create/recipes/cutting/compat/aether_redux/fieldsproot_log.json @@ -0,0 +1,20 @@ +{ + "type": "create:cutting", + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "aether_redux" + } + ], + "ingredients": [ + { + "item": "aether_redux:fieldsproot_log" + } + ], + "processingTime": 50, + "results": [ + { + "item": "aether_redux:stripped_fieldsproot_log" + } + ] +} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/cutting/compat/aether_redux/fieldsproot_wood.json b/src/generated/resources/data/create/recipes/cutting/compat/aether_redux/fieldsproot_wood.json new file mode 100644 index 0000000000..c57f8bcae7 --- /dev/null +++ b/src/generated/resources/data/create/recipes/cutting/compat/aether_redux/fieldsproot_wood.json @@ -0,0 +1,20 @@ +{ + "type": "create:cutting", + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "aether_redux" + } + ], + "ingredients": [ + { + "item": "aether_redux:fieldsproot_wood" + } + ], + "processingTime": 50, + "results": [ + { + "item": "aether_redux:stripped_fieldsproot_wood" + } + ] +} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/cutting/compat/aether_redux/glacia_log.json b/src/generated/resources/data/create/recipes/cutting/compat/aether_redux/glacia_log.json new file mode 100644 index 0000000000..f1b1597a61 --- /dev/null +++ b/src/generated/resources/data/create/recipes/cutting/compat/aether_redux/glacia_log.json @@ -0,0 +1,20 @@ +{ + "type": "create:cutting", + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "aether_redux" + } + ], + "ingredients": [ + { + "item": "aether_redux:glacia_log" + } + ], + "processingTime": 50, + "results": [ + { + "item": "aether_redux:stripped_glacia_log" + } + ] +} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/cutting/compat/aether_redux/glacia_wood.json b/src/generated/resources/data/create/recipes/cutting/compat/aether_redux/glacia_wood.json new file mode 100644 index 0000000000..d535099de7 --- /dev/null +++ b/src/generated/resources/data/create/recipes/cutting/compat/aether_redux/glacia_wood.json @@ -0,0 +1,20 @@ +{ + "type": "create:cutting", + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "aether_redux" + } + ], + "ingredients": [ + { + "item": "aether_redux:glacia_wood" + } + ], + "processingTime": 50, + "results": [ + { + "item": "aether_redux:stripped_glacia_wood" + } + ] +} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/cutting/compat/aether_redux/jellyshroom_hyphae.json b/src/generated/resources/data/create/recipes/cutting/compat/aether_redux/jellyshroom_hyphae.json new file mode 100644 index 0000000000..3a00d7ddb9 --- /dev/null +++ b/src/generated/resources/data/create/recipes/cutting/compat/aether_redux/jellyshroom_hyphae.json @@ -0,0 +1,21 @@ +{ + "type": "create:cutting", + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "aether_redux" + } + ], + "ingredients": [ + { + "item": "aether_redux:jellyshroom_hyphae" + } + ], + "processingTime": 50, + "results": [ + { + "count": 6, + "item": "aether_redux:jellyshroom_planks" + } + ] +} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/cutting/compat/aether_redux/jellyshroom_stem.json b/src/generated/resources/data/create/recipes/cutting/compat/aether_redux/jellyshroom_stem.json new file mode 100644 index 0000000000..2795cdd2b2 --- /dev/null +++ b/src/generated/resources/data/create/recipes/cutting/compat/aether_redux/jellyshroom_stem.json @@ -0,0 +1,21 @@ +{ + "type": "create:cutting", + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "aether_redux" + } + ], + "ingredients": [ + { + "item": "aether_redux:jellyshroom_stem" + } + ], + "processingTime": 50, + "results": [ + { + "count": 6, + "item": "aether_redux:jellyshroom_planks" + } + ] +} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/cutting/compat/aether_redux/sporing_blightwillow_log.json b/src/generated/resources/data/create/recipes/cutting/compat/aether_redux/sporing_blightwillow_log.json new file mode 100644 index 0000000000..5544118819 --- /dev/null +++ b/src/generated/resources/data/create/recipes/cutting/compat/aether_redux/sporing_blightwillow_log.json @@ -0,0 +1,20 @@ +{ + "type": "create:cutting", + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "aether_redux" + } + ], + "ingredients": [ + { + "item": "aether_redux:sporing_blightwillow_log" + } + ], + "processingTime": 50, + "results": [ + { + "item": "aether_redux:stripped_blightwillow_log" + } + ] +} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/cutting/compat/aether_redux/sporing_blightwillow_wood.json b/src/generated/resources/data/create/recipes/cutting/compat/aether_redux/sporing_blightwillow_wood.json new file mode 100644 index 0000000000..912fac7428 --- /dev/null +++ b/src/generated/resources/data/create/recipes/cutting/compat/aether_redux/sporing_blightwillow_wood.json @@ -0,0 +1,20 @@ +{ + "type": "create:cutting", + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "aether_redux" + } + ], + "ingredients": [ + { + "item": "aether_redux:sporing_blightwillow_wood" + } + ], + "processingTime": 50, + "results": [ + { + "item": "aether_redux:stripped_blightwillow_wood" + } + ] +} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/cutting/compat/aether_redux/stripped_blightwillow_log.json b/src/generated/resources/data/create/recipes/cutting/compat/aether_redux/stripped_blightwillow_log.json new file mode 100644 index 0000000000..82d1923090 --- /dev/null +++ b/src/generated/resources/data/create/recipes/cutting/compat/aether_redux/stripped_blightwillow_log.json @@ -0,0 +1,21 @@ +{ + "type": "create:cutting", + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "aether_redux" + } + ], + "ingredients": [ + { + "item": "aether_redux:stripped_blightwillow_log" + } + ], + "processingTime": 50, + "results": [ + { + "count": 6, + "item": "aether_redux:blightwillow_planks" + } + ] +} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/cutting/compat/aether_redux/stripped_blightwillow_wood.json b/src/generated/resources/data/create/recipes/cutting/compat/aether_redux/stripped_blightwillow_wood.json new file mode 100644 index 0000000000..b19b3a2662 --- /dev/null +++ b/src/generated/resources/data/create/recipes/cutting/compat/aether_redux/stripped_blightwillow_wood.json @@ -0,0 +1,21 @@ +{ + "type": "create:cutting", + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "aether_redux" + } + ], + "ingredients": [ + { + "item": "aether_redux:stripped_blightwillow_wood" + } + ], + "processingTime": 50, + "results": [ + { + "count": 6, + "item": "aether_redux:blightwillow_planks" + } + ] +} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/cutting/compat/aether_redux/stripped_cloudcap_hyphae.json b/src/generated/resources/data/create/recipes/cutting/compat/aether_redux/stripped_cloudcap_hyphae.json new file mode 100644 index 0000000000..4bfcdeb21d --- /dev/null +++ b/src/generated/resources/data/create/recipes/cutting/compat/aether_redux/stripped_cloudcap_hyphae.json @@ -0,0 +1,21 @@ +{ + "type": "create:cutting", + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "aether_redux" + } + ], + "ingredients": [ + { + "item": "aether_redux:stripped_cloudcap_hyphae" + } + ], + "processingTime": 50, + "results": [ + { + "count": 6, + "item": "aether_redux:cloudcap_planks" + } + ] +} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/cutting/compat/aether_redux/stripped_cloudcap_stem.json b/src/generated/resources/data/create/recipes/cutting/compat/aether_redux/stripped_cloudcap_stem.json new file mode 100644 index 0000000000..1728829e93 --- /dev/null +++ b/src/generated/resources/data/create/recipes/cutting/compat/aether_redux/stripped_cloudcap_stem.json @@ -0,0 +1,21 @@ +{ + "type": "create:cutting", + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "aether_redux" + } + ], + "ingredients": [ + { + "item": "aether_redux:stripped_cloudcap_stem" + } + ], + "processingTime": 50, + "results": [ + { + "count": 6, + "item": "aether_redux:cloudcap_planks" + } + ] +} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/cutting/compat/aether_redux/stripped_crystal_log.json b/src/generated/resources/data/create/recipes/cutting/compat/aether_redux/stripped_crystal_log.json new file mode 100644 index 0000000000..66c1714786 --- /dev/null +++ b/src/generated/resources/data/create/recipes/cutting/compat/aether_redux/stripped_crystal_log.json @@ -0,0 +1,21 @@ +{ + "type": "create:cutting", + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "aether_redux" + } + ], + "ingredients": [ + { + "item": "aether_redux:stripped_crystal_log" + } + ], + "processingTime": 50, + "results": [ + { + "count": 6, + "item": "aether_redux:crystal_planks" + } + ] +} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/cutting/compat/aether_redux/stripped_crystal_wood.json b/src/generated/resources/data/create/recipes/cutting/compat/aether_redux/stripped_crystal_wood.json new file mode 100644 index 0000000000..69373edb72 --- /dev/null +++ b/src/generated/resources/data/create/recipes/cutting/compat/aether_redux/stripped_crystal_wood.json @@ -0,0 +1,21 @@ +{ + "type": "create:cutting", + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "aether_redux" + } + ], + "ingredients": [ + { + "item": "aether_redux:stripped_crystal_wood" + } + ], + "processingTime": 50, + "results": [ + { + "count": 6, + "item": "aether_redux:crystal_planks" + } + ] +} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/cutting/compat/aether_redux/stripped_fieldsproot_log.json b/src/generated/resources/data/create/recipes/cutting/compat/aether_redux/stripped_fieldsproot_log.json new file mode 100644 index 0000000000..d70d483f3e --- /dev/null +++ b/src/generated/resources/data/create/recipes/cutting/compat/aether_redux/stripped_fieldsproot_log.json @@ -0,0 +1,21 @@ +{ + "type": "create:cutting", + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "aether_redux" + } + ], + "ingredients": [ + { + "item": "aether_redux:stripped_fieldsproot_log" + } + ], + "processingTime": 50, + "results": [ + { + "count": 6, + "item": "aether_redux:fieldsproot_planks" + } + ] +} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/cutting/compat/aether_redux/stripped_fieldsproot_wood.json b/src/generated/resources/data/create/recipes/cutting/compat/aether_redux/stripped_fieldsproot_wood.json new file mode 100644 index 0000000000..24e7656645 --- /dev/null +++ b/src/generated/resources/data/create/recipes/cutting/compat/aether_redux/stripped_fieldsproot_wood.json @@ -0,0 +1,21 @@ +{ + "type": "create:cutting", + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "aether_redux" + } + ], + "ingredients": [ + { + "item": "aether_redux:stripped_fieldsproot_wood" + } + ], + "processingTime": 50, + "results": [ + { + "count": 6, + "item": "aether_redux:fieldsproot_planks" + } + ] +} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/cutting/compat/aether_redux/stripped_glacia_log.json b/src/generated/resources/data/create/recipes/cutting/compat/aether_redux/stripped_glacia_log.json new file mode 100644 index 0000000000..3908b22bcd --- /dev/null +++ b/src/generated/resources/data/create/recipes/cutting/compat/aether_redux/stripped_glacia_log.json @@ -0,0 +1,21 @@ +{ + "type": "create:cutting", + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "aether_redux" + } + ], + "ingredients": [ + { + "item": "aether_redux:stripped_glacia_log" + } + ], + "processingTime": 50, + "results": [ + { + "count": 6, + "item": "aether_redux:glacia_planks" + } + ] +} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/cutting/compat/aether_redux/stripped_glacia_wood.json b/src/generated/resources/data/create/recipes/cutting/compat/aether_redux/stripped_glacia_wood.json new file mode 100644 index 0000000000..f0a747aca3 --- /dev/null +++ b/src/generated/resources/data/create/recipes/cutting/compat/aether_redux/stripped_glacia_wood.json @@ -0,0 +1,21 @@ +{ + "type": "create:cutting", + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "aether_redux" + } + ], + "ingredients": [ + { + "item": "aether_redux:stripped_glacia_wood" + } + ], + "processingTime": 50, + "results": [ + { + "count": 6, + "item": "aether_redux:glacia_planks" + } + ] +} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/cutting/compat/ancient_aether/highsproot_log.json b/src/generated/resources/data/create/recipes/cutting/compat/ancient_aether/highsproot_log.json new file mode 100644 index 0000000000..9f4376ee9c --- /dev/null +++ b/src/generated/resources/data/create/recipes/cutting/compat/ancient_aether/highsproot_log.json @@ -0,0 +1,20 @@ +{ + "type": "create:cutting", + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "ancient_aether" + } + ], + "ingredients": [ + { + "item": "ancient_aether:highsproot_log" + } + ], + "processingTime": 50, + "results": [ + { + "item": "ancient_aether:stripped_highsproot_log" + } + ] +} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/cutting/compat/ancient_aether/highsproot_wood.json b/src/generated/resources/data/create/recipes/cutting/compat/ancient_aether/highsproot_wood.json new file mode 100644 index 0000000000..840ad00f73 --- /dev/null +++ b/src/generated/resources/data/create/recipes/cutting/compat/ancient_aether/highsproot_wood.json @@ -0,0 +1,20 @@ +{ + "type": "create:cutting", + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "ancient_aether" + } + ], + "ingredients": [ + { + "item": "ancient_aether:highsproot_wood" + } + ], + "processingTime": 50, + "results": [ + { + "item": "ancient_aether:stripped_highsproot_wood" + } + ] +} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/cutting/compat/ancient_aether/sakura_log.json b/src/generated/resources/data/create/recipes/cutting/compat/ancient_aether/sakura_log.json new file mode 100644 index 0000000000..4b36507712 --- /dev/null +++ b/src/generated/resources/data/create/recipes/cutting/compat/ancient_aether/sakura_log.json @@ -0,0 +1,20 @@ +{ + "type": "create:cutting", + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "ancient_aether" + } + ], + "ingredients": [ + { + "item": "ancient_aether:sakura_log" + } + ], + "processingTime": 50, + "results": [ + { + "item": "ancient_aether:stripped_sakura_log" + } + ] +} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/cutting/compat/ancient_aether/sakura_wood.json b/src/generated/resources/data/create/recipes/cutting/compat/ancient_aether/sakura_wood.json new file mode 100644 index 0000000000..a114e53f82 --- /dev/null +++ b/src/generated/resources/data/create/recipes/cutting/compat/ancient_aether/sakura_wood.json @@ -0,0 +1,20 @@ +{ + "type": "create:cutting", + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "ancient_aether" + } + ], + "ingredients": [ + { + "item": "ancient_aether:sakura_wood" + } + ], + "processingTime": 50, + "results": [ + { + "item": "ancient_aether:stripped_sakura_wood" + } + ] +} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/cutting/compat/ancient_aether/stripped_highsproot_log.json b/src/generated/resources/data/create/recipes/cutting/compat/ancient_aether/stripped_highsproot_log.json new file mode 100644 index 0000000000..d7cdb783b5 --- /dev/null +++ b/src/generated/resources/data/create/recipes/cutting/compat/ancient_aether/stripped_highsproot_log.json @@ -0,0 +1,21 @@ +{ + "type": "create:cutting", + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "ancient_aether" + } + ], + "ingredients": [ + { + "item": "ancient_aether:stripped_highsproot_log" + } + ], + "processingTime": 50, + "results": [ + { + "count": 6, + "item": "ancient_aether:highsproot_planks" + } + ] +} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/cutting/compat/ancient_aether/stripped_highsproot_wood.json b/src/generated/resources/data/create/recipes/cutting/compat/ancient_aether/stripped_highsproot_wood.json new file mode 100644 index 0000000000..dafcf8b46c --- /dev/null +++ b/src/generated/resources/data/create/recipes/cutting/compat/ancient_aether/stripped_highsproot_wood.json @@ -0,0 +1,21 @@ +{ + "type": "create:cutting", + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "ancient_aether" + } + ], + "ingredients": [ + { + "item": "ancient_aether:stripped_highsproot_wood" + } + ], + "processingTime": 50, + "results": [ + { + "count": 6, + "item": "ancient_aether:highsproot_planks" + } + ] +} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/cutting/compat/ancient_aether/stripped_sakura_log.json b/src/generated/resources/data/create/recipes/cutting/compat/ancient_aether/stripped_sakura_log.json new file mode 100644 index 0000000000..28293ce4a1 --- /dev/null +++ b/src/generated/resources/data/create/recipes/cutting/compat/ancient_aether/stripped_sakura_log.json @@ -0,0 +1,21 @@ +{ + "type": "create:cutting", + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "ancient_aether" + } + ], + "ingredients": [ + { + "item": "ancient_aether:stripped_sakura_log" + } + ], + "processingTime": 50, + "results": [ + { + "count": 6, + "item": "ancient_aether:sakura_planks" + } + ] +} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/cutting/compat/ancient_aether/stripped_sakura_wood.json b/src/generated/resources/data/create/recipes/cutting/compat/ancient_aether/stripped_sakura_wood.json new file mode 100644 index 0000000000..b9c6054b31 --- /dev/null +++ b/src/generated/resources/data/create/recipes/cutting/compat/ancient_aether/stripped_sakura_wood.json @@ -0,0 +1,21 @@ +{ + "type": "create:cutting", + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "ancient_aether" + } + ], + "ingredients": [ + { + "item": "ancient_aether:stripped_sakura_wood" + } + ], + "processingTime": 50, + "results": [ + { + "count": 6, + "item": "ancient_aether:sakura_planks" + } + ] +} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/cutting/compat/deep_aether/conberry_log.json b/src/generated/resources/data/create/recipes/cutting/compat/deep_aether/conberry_log.json new file mode 100644 index 0000000000..b5a0e544c4 --- /dev/null +++ b/src/generated/resources/data/create/recipes/cutting/compat/deep_aether/conberry_log.json @@ -0,0 +1,20 @@ +{ + "type": "create:cutting", + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "deep_aether" + } + ], + "ingredients": [ + { + "item": "deep_aether:conberry_log" + } + ], + "processingTime": 50, + "results": [ + { + "item": "deep_aether:stripped_conberry_log" + } + ] +} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/cutting/compat/deep_aether/conberry_wood.json b/src/generated/resources/data/create/recipes/cutting/compat/deep_aether/conberry_wood.json new file mode 100644 index 0000000000..f5e06ba5c1 --- /dev/null +++ b/src/generated/resources/data/create/recipes/cutting/compat/deep_aether/conberry_wood.json @@ -0,0 +1,20 @@ +{ + "type": "create:cutting", + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "deep_aether" + } + ], + "ingredients": [ + { + "item": "deep_aether:conberry_wood" + } + ], + "processingTime": 50, + "results": [ + { + "item": "deep_aether:stripped_conberry_wood" + } + ] +} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/cutting/compat/deep_aether/cruderoot_log.json b/src/generated/resources/data/create/recipes/cutting/compat/deep_aether/cruderoot_log.json new file mode 100644 index 0000000000..6bc47d7369 --- /dev/null +++ b/src/generated/resources/data/create/recipes/cutting/compat/deep_aether/cruderoot_log.json @@ -0,0 +1,20 @@ +{ + "type": "create:cutting", + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "deep_aether" + } + ], + "ingredients": [ + { + "item": "deep_aether:cruderoot_log" + } + ], + "processingTime": 50, + "results": [ + { + "item": "deep_aether:stripped_cruderoot_log" + } + ] +} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/cutting/compat/deep_aether/cruderoot_wood.json b/src/generated/resources/data/create/recipes/cutting/compat/deep_aether/cruderoot_wood.json new file mode 100644 index 0000000000..fba9eeadf0 --- /dev/null +++ b/src/generated/resources/data/create/recipes/cutting/compat/deep_aether/cruderoot_wood.json @@ -0,0 +1,20 @@ +{ + "type": "create:cutting", + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "deep_aether" + } + ], + "ingredients": [ + { + "item": "deep_aether:cruderoot_wood" + } + ], + "processingTime": 50, + "results": [ + { + "item": "deep_aether:stripped_cruderoot_wood" + } + ] +} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/cutting/compat/deep_aether/roseroot_log.json b/src/generated/resources/data/create/recipes/cutting/compat/deep_aether/roseroot_log.json new file mode 100644 index 0000000000..b8e6500e27 --- /dev/null +++ b/src/generated/resources/data/create/recipes/cutting/compat/deep_aether/roseroot_log.json @@ -0,0 +1,20 @@ +{ + "type": "create:cutting", + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "deep_aether" + } + ], + "ingredients": [ + { + "item": "deep_aether:roseroot_log" + } + ], + "processingTime": 50, + "results": [ + { + "item": "deep_aether:stripped_roseroot_log" + } + ] +} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/cutting/compat/deep_aether/roseroot_wood.json b/src/generated/resources/data/create/recipes/cutting/compat/deep_aether/roseroot_wood.json new file mode 100644 index 0000000000..048d639a17 --- /dev/null +++ b/src/generated/resources/data/create/recipes/cutting/compat/deep_aether/roseroot_wood.json @@ -0,0 +1,20 @@ +{ + "type": "create:cutting", + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "deep_aether" + } + ], + "ingredients": [ + { + "item": "deep_aether:roseroot_wood" + } + ], + "processingTime": 50, + "results": [ + { + "item": "deep_aether:stripped_roseroot_wood" + } + ] +} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/cutting/compat/deep_aether/stripped_conberry_log.json b/src/generated/resources/data/create/recipes/cutting/compat/deep_aether/stripped_conberry_log.json new file mode 100644 index 0000000000..23cdfae750 --- /dev/null +++ b/src/generated/resources/data/create/recipes/cutting/compat/deep_aether/stripped_conberry_log.json @@ -0,0 +1,21 @@ +{ + "type": "create:cutting", + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "deep_aether" + } + ], + "ingredients": [ + { + "item": "deep_aether:stripped_conberry_log" + } + ], + "processingTime": 50, + "results": [ + { + "count": 6, + "item": "deep_aether:conberry_planks" + } + ] +} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/cutting/compat/deep_aether/stripped_conberry_wood.json b/src/generated/resources/data/create/recipes/cutting/compat/deep_aether/stripped_conberry_wood.json new file mode 100644 index 0000000000..0bdae78dad --- /dev/null +++ b/src/generated/resources/data/create/recipes/cutting/compat/deep_aether/stripped_conberry_wood.json @@ -0,0 +1,21 @@ +{ + "type": "create:cutting", + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "deep_aether" + } + ], + "ingredients": [ + { + "item": "deep_aether:stripped_conberry_wood" + } + ], + "processingTime": 50, + "results": [ + { + "count": 6, + "item": "deep_aether:conberry_planks" + } + ] +} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/cutting/compat/deep_aether/stripped_cruderoot_log.json b/src/generated/resources/data/create/recipes/cutting/compat/deep_aether/stripped_cruderoot_log.json new file mode 100644 index 0000000000..c9501d7a1a --- /dev/null +++ b/src/generated/resources/data/create/recipes/cutting/compat/deep_aether/stripped_cruderoot_log.json @@ -0,0 +1,21 @@ +{ + "type": "create:cutting", + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "deep_aether" + } + ], + "ingredients": [ + { + "item": "deep_aether:stripped_cruderoot_log" + } + ], + "processingTime": 50, + "results": [ + { + "count": 6, + "item": "deep_aether:cruderoot_planks" + } + ] +} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/cutting/compat/deep_aether/stripped_cruderoot_wood.json b/src/generated/resources/data/create/recipes/cutting/compat/deep_aether/stripped_cruderoot_wood.json new file mode 100644 index 0000000000..ca1fb349aa --- /dev/null +++ b/src/generated/resources/data/create/recipes/cutting/compat/deep_aether/stripped_cruderoot_wood.json @@ -0,0 +1,21 @@ +{ + "type": "create:cutting", + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "deep_aether" + } + ], + "ingredients": [ + { + "item": "deep_aether:stripped_cruderoot_wood" + } + ], + "processingTime": 50, + "results": [ + { + "count": 6, + "item": "deep_aether:cruderoot_planks" + } + ] +} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/cutting/compat/deep_aether/stripped_roseroot_log.json b/src/generated/resources/data/create/recipes/cutting/compat/deep_aether/stripped_roseroot_log.json new file mode 100644 index 0000000000..b9e657871a --- /dev/null +++ b/src/generated/resources/data/create/recipes/cutting/compat/deep_aether/stripped_roseroot_log.json @@ -0,0 +1,21 @@ +{ + "type": "create:cutting", + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "deep_aether" + } + ], + "ingredients": [ + { + "item": "deep_aether:stripped_roseroot_log" + } + ], + "processingTime": 50, + "results": [ + { + "count": 6, + "item": "deep_aether:roseroot_planks" + } + ] +} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/cutting/compat/deep_aether/stripped_roseroot_wood.json b/src/generated/resources/data/create/recipes/cutting/compat/deep_aether/stripped_roseroot_wood.json new file mode 100644 index 0000000000..0b7ea5b308 --- /dev/null +++ b/src/generated/resources/data/create/recipes/cutting/compat/deep_aether/stripped_roseroot_wood.json @@ -0,0 +1,21 @@ +{ + "type": "create:cutting", + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "deep_aether" + } + ], + "ingredients": [ + { + "item": "deep_aether:stripped_roseroot_wood" + } + ], + "processingTime": 50, + "results": [ + { + "count": 6, + "item": "deep_aether:roseroot_planks" + } + ] +} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/cutting/compat/deep_aether/stripped_sunroot_log.json b/src/generated/resources/data/create/recipes/cutting/compat/deep_aether/stripped_sunroot_log.json new file mode 100644 index 0000000000..81dc24b195 --- /dev/null +++ b/src/generated/resources/data/create/recipes/cutting/compat/deep_aether/stripped_sunroot_log.json @@ -0,0 +1,21 @@ +{ + "type": "create:cutting", + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "deep_aether" + } + ], + "ingredients": [ + { + "item": "deep_aether:stripped_sunroot_log" + } + ], + "processingTime": 50, + "results": [ + { + "count": 6, + "item": "deep_aether:sunroot_planks" + } + ] +} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/cutting/compat/deep_aether/stripped_sunroot_wood.json b/src/generated/resources/data/create/recipes/cutting/compat/deep_aether/stripped_sunroot_wood.json new file mode 100644 index 0000000000..fd73df2330 --- /dev/null +++ b/src/generated/resources/data/create/recipes/cutting/compat/deep_aether/stripped_sunroot_wood.json @@ -0,0 +1,21 @@ +{ + "type": "create:cutting", + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "deep_aether" + } + ], + "ingredients": [ + { + "item": "deep_aether:stripped_sunroot_wood" + } + ], + "processingTime": 50, + "results": [ + { + "count": 6, + "item": "deep_aether:sunroot_planks" + } + ] +} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/cutting/compat/deep_aether/stripped_yagroot_log.json b/src/generated/resources/data/create/recipes/cutting/compat/deep_aether/stripped_yagroot_log.json new file mode 100644 index 0000000000..f208ac7825 --- /dev/null +++ b/src/generated/resources/data/create/recipes/cutting/compat/deep_aether/stripped_yagroot_log.json @@ -0,0 +1,21 @@ +{ + "type": "create:cutting", + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "deep_aether" + } + ], + "ingredients": [ + { + "item": "deep_aether:stripped_yagroot_log" + } + ], + "processingTime": 50, + "results": [ + { + "count": 6, + "item": "deep_aether:yagroot_planks" + } + ] +} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/cutting/compat/deep_aether/stripped_yagroot_wood.json b/src/generated/resources/data/create/recipes/cutting/compat/deep_aether/stripped_yagroot_wood.json new file mode 100644 index 0000000000..ae586e71eb --- /dev/null +++ b/src/generated/resources/data/create/recipes/cutting/compat/deep_aether/stripped_yagroot_wood.json @@ -0,0 +1,21 @@ +{ + "type": "create:cutting", + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "deep_aether" + } + ], + "ingredients": [ + { + "item": "deep_aether:stripped_yagroot_wood" + } + ], + "processingTime": 50, + "results": [ + { + "count": 6, + "item": "deep_aether:yagroot_planks" + } + ] +} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/cutting/compat/deep_aether/sunroot_log.json b/src/generated/resources/data/create/recipes/cutting/compat/deep_aether/sunroot_log.json new file mode 100644 index 0000000000..dc26af99f7 --- /dev/null +++ b/src/generated/resources/data/create/recipes/cutting/compat/deep_aether/sunroot_log.json @@ -0,0 +1,20 @@ +{ + "type": "create:cutting", + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "deep_aether" + } + ], + "ingredients": [ + { + "item": "deep_aether:sunroot_log" + } + ], + "processingTime": 50, + "results": [ + { + "item": "deep_aether:stripped_sunroot_log" + } + ] +} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/cutting/compat/deep_aether/sunroot_wood.json b/src/generated/resources/data/create/recipes/cutting/compat/deep_aether/sunroot_wood.json new file mode 100644 index 0000000000..c0a864898a --- /dev/null +++ b/src/generated/resources/data/create/recipes/cutting/compat/deep_aether/sunroot_wood.json @@ -0,0 +1,20 @@ +{ + "type": "create:cutting", + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "deep_aether" + } + ], + "ingredients": [ + { + "item": "deep_aether:sunroot_wood" + } + ], + "processingTime": 50, + "results": [ + { + "item": "deep_aether:stripped_sunroot_wood" + } + ] +} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/cutting/compat/deep_aether/yagroot_log.json b/src/generated/resources/data/create/recipes/cutting/compat/deep_aether/yagroot_log.json new file mode 100644 index 0000000000..819cbac182 --- /dev/null +++ b/src/generated/resources/data/create/recipes/cutting/compat/deep_aether/yagroot_log.json @@ -0,0 +1,20 @@ +{ + "type": "create:cutting", + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "deep_aether" + } + ], + "ingredients": [ + { + "item": "deep_aether:yagroot_log" + } + ], + "processingTime": 50, + "results": [ + { + "item": "deep_aether:stripped_yagroot_log" + } + ] +} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/cutting/compat/deep_aether/yagroot_wood.json b/src/generated/resources/data/create/recipes/cutting/compat/deep_aether/yagroot_wood.json new file mode 100644 index 0000000000..5a6632126e --- /dev/null +++ b/src/generated/resources/data/create/recipes/cutting/compat/deep_aether/yagroot_wood.json @@ -0,0 +1,20 @@ +{ + "type": "create:cutting", + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "deep_aether" + } + ], + "ingredients": [ + { + "item": "deep_aether:yagroot_wood" + } + ], + "processingTime": 50, + "results": [ + { + "item": "deep_aether:stripped_yagroot_wood" + } + ] +} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/emptying/compat/aether/milk_bucket.json b/src/generated/resources/data/create/recipes/emptying/compat/aether/milk_bucket.json new file mode 100644 index 0000000000..60bd5a082a --- /dev/null +++ b/src/generated/resources/data/create/recipes/emptying/compat/aether/milk_bucket.json @@ -0,0 +1,23 @@ +{ + "type": "create:emptying", + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "aether" + } + ], + "ingredients": [ + { + "item": "aether:skyroot_milk_bucket" + } + ], + "results": [ + { + "item": "aether:skyroot_bucket" + }, + { + "amount": 1000, + "fluid": "minecraft:milk" + } + ] +} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/emptying/compat/aether/water_bucket.json b/src/generated/resources/data/create/recipes/emptying/compat/aether/water_bucket.json new file mode 100644 index 0000000000..1a476a18e2 --- /dev/null +++ b/src/generated/resources/data/create/recipes/emptying/compat/aether/water_bucket.json @@ -0,0 +1,23 @@ +{ + "type": "create:emptying", + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "aether" + } + ], + "ingredients": [ + { + "item": "aether:skyroot_water_bucket" + } + ], + "results": [ + { + "item": "aether:skyroot_bucket" + }, + { + "amount": 1000, + "fluid": "minecraft:water" + } + ] +} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/emptying/compat/deep_aether/poison_bucket.json b/src/generated/resources/data/create/recipes/emptying/compat/deep_aether/poison_bucket.json new file mode 100644 index 0000000000..245d61b1ff --- /dev/null +++ b/src/generated/resources/data/create/recipes/emptying/compat/deep_aether/poison_bucket.json @@ -0,0 +1,23 @@ +{ + "type": "create:emptying", + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "deep_aether" + } + ], + "ingredients": [ + { + "item": "deep_aether:poison_bucket" + } + ], + "results": [ + { + "item": "minecraft:bucket" + }, + { + "amount": 1000, + "fluid": "deep_aether:poison_fluid" + } + ] +} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/emptying/compat/deep_aether/skyroot_poison_bucket.json b/src/generated/resources/data/create/recipes/emptying/compat/deep_aether/skyroot_poison_bucket.json new file mode 100644 index 0000000000..50b9e219cf --- /dev/null +++ b/src/generated/resources/data/create/recipes/emptying/compat/deep_aether/skyroot_poison_bucket.json @@ -0,0 +1,23 @@ +{ + "type": "create:emptying", + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "deep_aether" + } + ], + "ingredients": [ + { + "item": "aether:skyroot_poison_bucket" + } + ], + "results": [ + { + "item": "aether:skyroot_bucket" + }, + { + "amount": 1000, + "fluid": "deep_aether:poison_fluid" + } + ] +} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/filling/compat/aether/milk_bucket.json b/src/generated/resources/data/create/recipes/filling/compat/aether/milk_bucket.json new file mode 100644 index 0000000000..651d1fd894 --- /dev/null +++ b/src/generated/resources/data/create/recipes/filling/compat/aether/milk_bucket.json @@ -0,0 +1,23 @@ +{ + "type": "create:filling", + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "aether" + } + ], + "ingredients": [ + { + "item": "aether:skyroot_bucket" + }, + { + "amount": 1000, + "fluidTag": "forge:milk" + } + ], + "results": [ + { + "item": "aether:skyroot_milk_bucket" + } + ] +} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/filling/compat/aether/water_bucket.json b/src/generated/resources/data/create/recipes/filling/compat/aether/water_bucket.json new file mode 100644 index 0000000000..0a3758f6dc --- /dev/null +++ b/src/generated/resources/data/create/recipes/filling/compat/aether/water_bucket.json @@ -0,0 +1,24 @@ +{ + "type": "create:filling", + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "aether" + } + ], + "ingredients": [ + { + "item": "aether:skyroot_bucket" + }, + { + "amount": 1000, + "fluid": "minecraft:water", + "nbt": {} + } + ], + "results": [ + { + "item": "aether:skyroot_water_bucket" + } + ] +} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/filling/compat/deep_aether/skyroot_poison_bucket.json b/src/generated/resources/data/create/recipes/filling/compat/deep_aether/skyroot_poison_bucket.json new file mode 100644 index 0000000000..b61cc3042e --- /dev/null +++ b/src/generated/resources/data/create/recipes/filling/compat/deep_aether/skyroot_poison_bucket.json @@ -0,0 +1,23 @@ +{ + "type": "create:filling", + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "deep_aether" + } + ], + "ingredients": [ + { + "item": "aether:skyroot_bucket" + }, + { + "amount": 1000, + "fluid": "deep_aether:poison_fluid" + } + ], + "results": [ + { + "item": "aether:skyroot_poison_bucket" + } + ] +} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/milling/compat/aether/purple_flower.json b/src/generated/resources/data/create/recipes/milling/compat/aether/purple_flower.json new file mode 100644 index 0000000000..a2f2cefb1e --- /dev/null +++ b/src/generated/resources/data/create/recipes/milling/compat/aether/purple_flower.json @@ -0,0 +1,21 @@ +{ + "type": "create:milling", + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "aether" + } + ], + "ingredients": [ + { + "item": "aether:purple_flower" + } + ], + "processingTime": 50, + "results": [ + { + "count": 2, + "item": "minecraft:purple_dye" + } + ] +} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/milling/compat/aether/white_flower.json b/src/generated/resources/data/create/recipes/milling/compat/aether/white_flower.json new file mode 100644 index 0000000000..0927f12dcd --- /dev/null +++ b/src/generated/resources/data/create/recipes/milling/compat/aether/white_flower.json @@ -0,0 +1,21 @@ +{ + "type": "create:milling", + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "aether" + } + ], + "ingredients": [ + { + "item": "aether:white_flower" + } + ], + "processingTime": 50, + "results": [ + { + "count": 2, + "item": "minecraft:white_dye" + } + ] +} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/milling/compat/aether_redux/aurum.json b/src/generated/resources/data/create/recipes/milling/compat/aether_redux/aurum.json new file mode 100644 index 0000000000..4d9a1f5fcd --- /dev/null +++ b/src/generated/resources/data/create/recipes/milling/compat/aether_redux/aurum.json @@ -0,0 +1,21 @@ +{ + "type": "create:milling", + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "aether_redux" + } + ], + "ingredients": [ + { + "item": "aether_redux:aurum" + } + ], + "processingTime": 50, + "results": [ + { + "count": 2, + "item": "minecraft:yellow_dye" + } + ] +} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/milling/compat/aether_redux/blightshade.json b/src/generated/resources/data/create/recipes/milling/compat/aether_redux/blightshade.json new file mode 100644 index 0000000000..a6dd78a390 --- /dev/null +++ b/src/generated/resources/data/create/recipes/milling/compat/aether_redux/blightshade.json @@ -0,0 +1,25 @@ +{ + "type": "create:milling", + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "aether_redux" + } + ], + "ingredients": [ + { + "item": "aether_redux:blightshade" + } + ], + "processingTime": 50, + "results": [ + { + "count": 2, + "item": "minecraft:purple_dye" + }, + { + "chance": 0.25, + "item": "minecraft:black_dye" + } + ] +} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/milling/compat/aether_redux/daggerbloom.json b/src/generated/resources/data/create/recipes/milling/compat/aether_redux/daggerbloom.json new file mode 100644 index 0000000000..b10a65a4cf --- /dev/null +++ b/src/generated/resources/data/create/recipes/milling/compat/aether_redux/daggerbloom.json @@ -0,0 +1,25 @@ +{ + "type": "create:milling", + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "aether_redux" + } + ], + "ingredients": [ + { + "item": "aether_redux:daggerbloom" + } + ], + "processingTime": 50, + "results": [ + { + "count": 2, + "item": "minecraft:white_dye" + }, + { + "chance": 0.25, + "item": "minecraft:light_blue_dye" + } + ] +} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/milling/compat/aether_redux/fieldsproot_petals.json b/src/generated/resources/data/create/recipes/milling/compat/aether_redux/fieldsproot_petals.json new file mode 100644 index 0000000000..300910d91a --- /dev/null +++ b/src/generated/resources/data/create/recipes/milling/compat/aether_redux/fieldsproot_petals.json @@ -0,0 +1,33 @@ +{ + "type": "create:milling", + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "aether_redux" + } + ], + "ingredients": [ + { + "item": "aether_redux:fieldsproot_petals" + } + ], + "processingTime": 50, + "results": [ + { + "chance": 0.25, + "item": "minecraft:light_blue_dye" + }, + { + "chance": 0.25, + "item": "minecraft:pink_dye" + }, + { + "chance": 0.25, + "item": "minecraft:magenta_dye" + }, + { + "chance": 0.25, + "item": "minecraft:black_dye" + } + ] +} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/milling/compat/aether_redux/flareblossom.json b/src/generated/resources/data/create/recipes/milling/compat/aether_redux/flareblossom.json new file mode 100644 index 0000000000..674a64de4a --- /dev/null +++ b/src/generated/resources/data/create/recipes/milling/compat/aether_redux/flareblossom.json @@ -0,0 +1,26 @@ +{ + "type": "create:milling", + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "aether_redux" + } + ], + "ingredients": [ + { + "item": "aether_redux:flareblossom" + } + ], + "processingTime": 50, + "results": [ + { + "count": 2, + "item": "minecraft:white_dye" + }, + { + "chance": 0.25, + "count": 2, + "item": "minecraft:red_dye" + } + ] +} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/milling/compat/aether_redux/golden_clover.json b/src/generated/resources/data/create/recipes/milling/compat/aether_redux/golden_clover.json new file mode 100644 index 0000000000..20167f0c19 --- /dev/null +++ b/src/generated/resources/data/create/recipes/milling/compat/aether_redux/golden_clover.json @@ -0,0 +1,21 @@ +{ + "type": "create:milling", + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "aether_redux" + } + ], + "ingredients": [ + { + "item": "aether_redux:golden_clover" + } + ], + "processingTime": 50, + "results": [ + { + "count": 2, + "item": "minecraft:yellow_dye" + } + ] +} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/milling/compat/aether_redux/infernia.json b/src/generated/resources/data/create/recipes/milling/compat/aether_redux/infernia.json new file mode 100644 index 0000000000..d4d0e18765 --- /dev/null +++ b/src/generated/resources/data/create/recipes/milling/compat/aether_redux/infernia.json @@ -0,0 +1,29 @@ +{ + "type": "create:milling", + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "aether_redux" + } + ], + "ingredients": [ + { + "item": "aether_redux:infernia" + } + ], + "processingTime": 50, + "results": [ + { + "item": "minecraft:blaze_powder" + }, + { + "chance": 0.5, + "item": "minecraft:blaze_powder" + }, + { + "chance": 0.25, + "count": 2, + "item": "minecraft:orange_dye" + } + ] +} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/milling/compat/aether_redux/iridia.json b/src/generated/resources/data/create/recipes/milling/compat/aether_redux/iridia.json new file mode 100644 index 0000000000..196565af52 --- /dev/null +++ b/src/generated/resources/data/create/recipes/milling/compat/aether_redux/iridia.json @@ -0,0 +1,21 @@ +{ + "type": "create:milling", + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "aether_redux" + } + ], + "ingredients": [ + { + "item": "aether_redux:iridia" + } + ], + "processingTime": 50, + "results": [ + { + "count": 2, + "item": "minecraft:magenta_dye" + } + ] +} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/milling/compat/aether_redux/lumina.json b/src/generated/resources/data/create/recipes/milling/compat/aether_redux/lumina.json new file mode 100644 index 0000000000..8ae712f2e2 --- /dev/null +++ b/src/generated/resources/data/create/recipes/milling/compat/aether_redux/lumina.json @@ -0,0 +1,21 @@ +{ + "type": "create:milling", + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "aether_redux" + } + ], + "ingredients": [ + { + "item": "aether_redux:lumina" + } + ], + "processingTime": 50, + "results": [ + { + "count": 2, + "item": "minecraft:black_dye" + } + ] +} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/milling/compat/aether_redux/luxweed.json b/src/generated/resources/data/create/recipes/milling/compat/aether_redux/luxweed.json new file mode 100644 index 0000000000..db3464f2d4 --- /dev/null +++ b/src/generated/resources/data/create/recipes/milling/compat/aether_redux/luxweed.json @@ -0,0 +1,24 @@ +{ + "type": "create:milling", + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "aether_redux" + } + ], + "ingredients": [ + { + "item": "aether_redux:luxweed" + } + ], + "processingTime": 50, + "results": [ + { + "item": "minecraft:light_blue_dye" + }, + { + "chance": 0.5, + "item": "minecraft:purple_dye" + } + ] +} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/milling/compat/aether_redux/skysprouts.json b/src/generated/resources/data/create/recipes/milling/compat/aether_redux/skysprouts.json new file mode 100644 index 0000000000..a70196a4ad --- /dev/null +++ b/src/generated/resources/data/create/recipes/milling/compat/aether_redux/skysprouts.json @@ -0,0 +1,21 @@ +{ + "type": "create:milling", + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "aether_redux" + } + ], + "ingredients": [ + { + "item": "aether_redux:skysprouts" + } + ], + "processingTime": 50, + "results": [ + { + "count": 2, + "item": "minecraft:light_blue_dye" + } + ] +} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/milling/compat/aether_redux/spirolyctil.json b/src/generated/resources/data/create/recipes/milling/compat/aether_redux/spirolyctil.json new file mode 100644 index 0000000000..3d55b4dbb7 --- /dev/null +++ b/src/generated/resources/data/create/recipes/milling/compat/aether_redux/spirolyctil.json @@ -0,0 +1,25 @@ +{ + "type": "create:milling", + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "aether_redux" + } + ], + "ingredients": [ + { + "item": "aether_redux:spirolyctil" + } + ], + "processingTime": 50, + "results": [ + { + "count": 2, + "item": "minecraft:light_blue_dye" + }, + { + "chance": 0.25, + "item": "minecraft:purple_dye" + } + ] +} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/milling/compat/aether_redux/theratip.json b/src/generated/resources/data/create/recipes/milling/compat/aether_redux/theratip.json new file mode 100644 index 0000000000..2b460a3cd2 --- /dev/null +++ b/src/generated/resources/data/create/recipes/milling/compat/aether_redux/theratip.json @@ -0,0 +1,21 @@ +{ + "type": "create:milling", + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "aether_redux" + } + ], + "ingredients": [ + { + "item": "aether_redux:theratip" + } + ], + "processingTime": 50, + "results": [ + { + "count": 2, + "item": "minecraft:pink_dye" + } + ] +} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/milling/compat/aether_redux/wyndsprouts.json b/src/generated/resources/data/create/recipes/milling/compat/aether_redux/wyndsprouts.json new file mode 100644 index 0000000000..8478a38341 --- /dev/null +++ b/src/generated/resources/data/create/recipes/milling/compat/aether_redux/wyndsprouts.json @@ -0,0 +1,21 @@ +{ + "type": "create:milling", + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "aether_redux" + } + ], + "ingredients": [ + { + "item": "aether_redux:wyndsprouts" + } + ], + "processingTime": 50, + "results": [ + { + "count": 2, + "item": "minecraft:light_gray_dye" + } + ] +} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/milling/compat/aether_redux/xaelia_patch.json b/src/generated/resources/data/create/recipes/milling/compat/aether_redux/xaelia_patch.json new file mode 100644 index 0000000000..17d0cd1698 --- /dev/null +++ b/src/generated/resources/data/create/recipes/milling/compat/aether_redux/xaelia_patch.json @@ -0,0 +1,21 @@ +{ + "type": "create:milling", + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "aether_redux" + } + ], + "ingredients": [ + { + "item": "aether_redux:xaelia_patch" + } + ], + "processingTime": 50, + "results": [ + { + "count": 2, + "item": "minecraft:light_gray_dye" + } + ] +} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/milling/compat/aether_redux/zyatrix.json b/src/generated/resources/data/create/recipes/milling/compat/aether_redux/zyatrix.json new file mode 100644 index 0000000000..62cd84125e --- /dev/null +++ b/src/generated/resources/data/create/recipes/milling/compat/aether_redux/zyatrix.json @@ -0,0 +1,25 @@ +{ + "type": "create:milling", + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "aether_redux" + } + ], + "ingredients": [ + { + "item": "aether_redux:zyatrix" + } + ], + "processingTime": 50, + "results": [ + { + "count": 2, + "item": "minecraft:purple_dye" + }, + { + "chance": 0.25, + "item": "minecraft:orange_dye" + } + ] +} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/milling/compat/ancient_aether/elevetia.json b/src/generated/resources/data/create/recipes/milling/compat/ancient_aether/elevetia.json new file mode 100644 index 0000000000..5f5d99da33 --- /dev/null +++ b/src/generated/resources/data/create/recipes/milling/compat/ancient_aether/elevetia.json @@ -0,0 +1,25 @@ +{ + "type": "create:milling", + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "ancient_aether" + } + ], + "ingredients": [ + { + "item": "ancient_aether:elevetia" + } + ], + "processingTime": 50, + "results": [ + { + "count": 2, + "item": "minecraft:purple_dye" + }, + { + "chance": 0.25, + "item": "minecraft:black_dye" + } + ] +} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/milling/compat/ancient_aether/sky_blues.json b/src/generated/resources/data/create/recipes/milling/compat/ancient_aether/sky_blues.json new file mode 100644 index 0000000000..7077c50601 --- /dev/null +++ b/src/generated/resources/data/create/recipes/milling/compat/ancient_aether/sky_blues.json @@ -0,0 +1,21 @@ +{ + "type": "create:milling", + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "ancient_aether" + } + ], + "ingredients": [ + { + "item": "ancient_aether:sky_blues" + } + ], + "processingTime": 50, + "results": [ + { + "count": 2, + "item": "minecraft:cyan_dye" + } + ] +} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/milling/compat/ancient_aether/sunset_rose.json b/src/generated/resources/data/create/recipes/milling/compat/ancient_aether/sunset_rose.json new file mode 100644 index 0000000000..53d7e5fe8a --- /dev/null +++ b/src/generated/resources/data/create/recipes/milling/compat/ancient_aether/sunset_rose.json @@ -0,0 +1,21 @@ +{ + "type": "create:milling", + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "ancient_aether" + } + ], + "ingredients": [ + { + "item": "ancient_aether:sunset_rose" + } + ], + "processingTime": 50, + "results": [ + { + "count": 2, + "item": "minecraft:red_dye" + } + ] +} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/milling/compat/ancient_aether/valkyrie_clay.json b/src/generated/resources/data/create/recipes/milling/compat/ancient_aether/valkyrie_clay.json new file mode 100644 index 0000000000..ada6815013 --- /dev/null +++ b/src/generated/resources/data/create/recipes/milling/compat/ancient_aether/valkyrie_clay.json @@ -0,0 +1,19 @@ +{ + "type": "create:milling", + "ingredients": [ + { + "item": "ancient_aether:valkyrie_clay" + } + ], + "processingTime": 50, + "results": [ + { + "count": 3, + "item": "ancient_aether:valkyrie_clay_ball" + }, + { + "chance": 0.5, + "item": "ancient_aether:valkyrie_clay_ball" + } + ] +} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/milling/compat/ancient_aether/wynd_thistle.json b/src/generated/resources/data/create/recipes/milling/compat/ancient_aether/wynd_thistle.json new file mode 100644 index 0000000000..aa00906b22 --- /dev/null +++ b/src/generated/resources/data/create/recipes/milling/compat/ancient_aether/wynd_thistle.json @@ -0,0 +1,21 @@ +{ + "type": "create:milling", + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "ancient_aether" + } + ], + "ingredients": [ + { + "item": "ancient_aether:wynd_thistle" + } + ], + "processingTime": 50, + "results": [ + { + "count": 2, + "item": "minecraft:light_blue_dye" + } + ] +} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/milling/compat/deep_aether/aerlavender.json b/src/generated/resources/data/create/recipes/milling/compat/deep_aether/aerlavender.json new file mode 100644 index 0000000000..6783016e66 --- /dev/null +++ b/src/generated/resources/data/create/recipes/milling/compat/deep_aether/aerlavender.json @@ -0,0 +1,21 @@ +{ + "type": "create:milling", + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "deep_aether" + } + ], + "ingredients": [ + { + "item": "deep_aether:aerlavender" + } + ], + "processingTime": 50, + "results": [ + { + "count": 2, + "item": "minecraft:pink_dye" + } + ] +} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/milling/compat/deep_aether/aether_cattails.json b/src/generated/resources/data/create/recipes/milling/compat/deep_aether/aether_cattails.json new file mode 100644 index 0000000000..e010991da4 --- /dev/null +++ b/src/generated/resources/data/create/recipes/milling/compat/deep_aether/aether_cattails.json @@ -0,0 +1,21 @@ +{ + "type": "create:milling", + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "deep_aether" + } + ], + "ingredients": [ + { + "item": "deep_aether:aether_cattails" + } + ], + "processingTime": 50, + "results": [ + { + "count": 2, + "item": "minecraft:cyan_dye" + } + ] +} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/milling/compat/deep_aether/echaisy.json b/src/generated/resources/data/create/recipes/milling/compat/deep_aether/echaisy.json new file mode 100644 index 0000000000..d1b0d87de0 --- /dev/null +++ b/src/generated/resources/data/create/recipes/milling/compat/deep_aether/echaisy.json @@ -0,0 +1,21 @@ +{ + "type": "create:milling", + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "deep_aether" + } + ], + "ingredients": [ + { + "item": "deep_aether:echaisy" + } + ], + "processingTime": 50, + "results": [ + { + "count": 2, + "item": "minecraft:purple_dye" + } + ] +} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/milling/compat/deep_aether/enchanted_blossom.json b/src/generated/resources/data/create/recipes/milling/compat/deep_aether/enchanted_blossom.json new file mode 100644 index 0000000000..8e737cd234 --- /dev/null +++ b/src/generated/resources/data/create/recipes/milling/compat/deep_aether/enchanted_blossom.json @@ -0,0 +1,25 @@ +{ + "type": "create:milling", + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "deep_aether" + } + ], + "ingredients": [ + { + "item": "deep_aether:enchanted_blossom" + } + ], + "processingTime": 50, + "results": [ + { + "count": 2, + "item": "minecraft:white_dye" + }, + { + "chance": 0.25, + "item": "minecraft:yellow_dye" + } + ] +} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/milling/compat/deep_aether/golden_aspess.json b/src/generated/resources/data/create/recipes/milling/compat/deep_aether/golden_aspess.json new file mode 100644 index 0000000000..5e555a83f1 --- /dev/null +++ b/src/generated/resources/data/create/recipes/milling/compat/deep_aether/golden_aspess.json @@ -0,0 +1,21 @@ +{ + "type": "create:milling", + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "deep_aether" + } + ], + "ingredients": [ + { + "item": "deep_aether:golden_aspess" + } + ], + "processingTime": 50, + "results": [ + { + "count": 2, + "item": "minecraft:orange_dye" + } + ] +} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/milling/compat/deep_aether/golden_flower.json b/src/generated/resources/data/create/recipes/milling/compat/deep_aether/golden_flower.json new file mode 100644 index 0000000000..773f5958db --- /dev/null +++ b/src/generated/resources/data/create/recipes/milling/compat/deep_aether/golden_flower.json @@ -0,0 +1,25 @@ +{ + "type": "create:milling", + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "deep_aether" + } + ], + "ingredients": [ + { + "item": "deep_aether:golden_flower" + } + ], + "processingTime": 50, + "results": [ + { + "count": 2, + "item": "minecraft:orange_dye" + }, + { + "chance": 0.25, + "item": "minecraft:pink_dye" + } + ] +} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/milling/compat/deep_aether/iaspove.json b/src/generated/resources/data/create/recipes/milling/compat/deep_aether/iaspove.json new file mode 100644 index 0000000000..92a6f98aa8 --- /dev/null +++ b/src/generated/resources/data/create/recipes/milling/compat/deep_aether/iaspove.json @@ -0,0 +1,21 @@ +{ + "type": "create:milling", + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "deep_aether" + } + ], + "ingredients": [ + { + "item": "deep_aether:iaspove" + } + ], + "processingTime": 50, + "results": [ + { + "count": 2, + "item": "minecraft:blue_dye" + } + ] +} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/milling/compat/deep_aether/medium_grass.json b/src/generated/resources/data/create/recipes/milling/compat/deep_aether/medium_grass.json new file mode 100644 index 0000000000..44c0048eb1 --- /dev/null +++ b/src/generated/resources/data/create/recipes/milling/compat/deep_aether/medium_grass.json @@ -0,0 +1,29 @@ +{ + "type": "create:milling", + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "deep_aether" + } + ], + "ingredients": [ + { + "item": "deep_aether:medium_golden_grass" + } + ], + "processingTime": 50, + "results": [ + { + "chance": 0.25, + "item": "minecraft:wheat_seeds" + }, + { + "chance": 0.2, + "item": "deep_aether:golden_grass_seeds" + }, + { + "chance": 0.02, + "item": "aether:ambrosium_shard" + } + ] +} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/milling/compat/deep_aether/mini_grass.json b/src/generated/resources/data/create/recipes/milling/compat/deep_aether/mini_grass.json new file mode 100644 index 0000000000..36e326742d --- /dev/null +++ b/src/generated/resources/data/create/recipes/milling/compat/deep_aether/mini_grass.json @@ -0,0 +1,29 @@ +{ + "type": "create:milling", + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "deep_aether" + } + ], + "ingredients": [ + { + "item": "deep_aether:mini_golden_grass" + } + ], + "processingTime": 50, + "results": [ + { + "chance": 0.25, + "item": "minecraft:wheat_seeds" + }, + { + "chance": 0.2, + "item": "deep_aether:golden_grass_seeds" + }, + { + "chance": 0.02, + "item": "aether:ambrosium_shard" + } + ] +} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/milling/compat/deep_aether/radiant_orchid.json b/src/generated/resources/data/create/recipes/milling/compat/deep_aether/radiant_orchid.json new file mode 100644 index 0000000000..59bc807bfa --- /dev/null +++ b/src/generated/resources/data/create/recipes/milling/compat/deep_aether/radiant_orchid.json @@ -0,0 +1,21 @@ +{ + "type": "create:milling", + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "deep_aether" + } + ], + "ingredients": [ + { + "item": "deep_aether:radiant_orchid" + } + ], + "processingTime": 50, + "results": [ + { + "count": 2, + "item": "minecraft:purple_dye" + } + ] +} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/milling/compat/deep_aether/short_grass.json b/src/generated/resources/data/create/recipes/milling/compat/deep_aether/short_grass.json new file mode 100644 index 0000000000..c7396ff2d7 --- /dev/null +++ b/src/generated/resources/data/create/recipes/milling/compat/deep_aether/short_grass.json @@ -0,0 +1,29 @@ +{ + "type": "create:milling", + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "deep_aether" + } + ], + "ingredients": [ + { + "item": "deep_aether:short_golden_grass" + } + ], + "processingTime": 50, + "results": [ + { + "chance": 0.25, + "item": "minecraft:wheat_seeds" + }, + { + "chance": 0.2, + "item": "deep_aether:golden_grass_seeds" + }, + { + "chance": 0.02, + "item": "aether:ambrosium_shard" + } + ] +} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/milling/compat/deep_aether/sky_tulips.json b/src/generated/resources/data/create/recipes/milling/compat/deep_aether/sky_tulips.json new file mode 100644 index 0000000000..7e7672ff89 --- /dev/null +++ b/src/generated/resources/data/create/recipes/milling/compat/deep_aether/sky_tulips.json @@ -0,0 +1,21 @@ +{ + "type": "create:milling", + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "deep_aether" + } + ], + "ingredients": [ + { + "item": "deep_aether:sky_tulips" + } + ], + "processingTime": 50, + "results": [ + { + "count": 2, + "item": "minecraft:red_dye" + } + ] +} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/milling/compat/deep_aether/tall_aerlavender.json b/src/generated/resources/data/create/recipes/milling/compat/deep_aether/tall_aerlavender.json new file mode 100644 index 0000000000..c0102fa859 --- /dev/null +++ b/src/generated/resources/data/create/recipes/milling/compat/deep_aether/tall_aerlavender.json @@ -0,0 +1,26 @@ +{ + "type": "create:milling", + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "deep_aether" + } + ], + "ingredients": [ + { + "item": "deep_aether:tall_aerlavender" + } + ], + "processingTime": 50, + "results": [ + { + "count": 3, + "item": "minecraft:pink_dye" + }, + { + "chance": 0.25, + "count": 2, + "item": "minecraft:pink_dye" + } + ] +} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/milling/compat/deep_aether/tall_aether_cattails.json b/src/generated/resources/data/create/recipes/milling/compat/deep_aether/tall_aether_cattails.json new file mode 100644 index 0000000000..e4a3067705 --- /dev/null +++ b/src/generated/resources/data/create/recipes/milling/compat/deep_aether/tall_aether_cattails.json @@ -0,0 +1,26 @@ +{ + "type": "create:milling", + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "deep_aether" + } + ], + "ingredients": [ + { + "item": "deep_aether:tall_aether_cattails" + } + ], + "processingTime": 50, + "results": [ + { + "count": 3, + "item": "minecraft:cyan_dye" + }, + { + "chance": 0.25, + "count": 2, + "item": "minecraft:cyan_dye" + } + ] +} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/milling/compat/deep_aether/tall_grass.json b/src/generated/resources/data/create/recipes/milling/compat/deep_aether/tall_grass.json new file mode 100644 index 0000000000..93f838e63f --- /dev/null +++ b/src/generated/resources/data/create/recipes/milling/compat/deep_aether/tall_grass.json @@ -0,0 +1,29 @@ +{ + "type": "create:milling", + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "deep_aether" + } + ], + "ingredients": [ + { + "item": "deep_aether:tall_golden_grass" + } + ], + "processingTime": 50, + "results": [ + { + "chance": 0.5, + "item": "minecraft:wheat_seeds" + }, + { + "chance": 0.4, + "item": "deep_aether:golden_grass_seeds" + }, + { + "chance": 0.04, + "item": "aether:ambrosium_shard" + } + ] +} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/mixing/compat/deep_aether/aether_mud.json b/src/generated/resources/data/create/recipes/mixing/compat/deep_aether/aether_mud.json new file mode 100644 index 0000000000..89fb8125af --- /dev/null +++ b/src/generated/resources/data/create/recipes/mixing/compat/deep_aether/aether_mud.json @@ -0,0 +1,24 @@ +{ + "type": "create:mixing", + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "deep_aether" + } + ], + "ingredients": [ + { + "item": "aether:aether_dirt" + }, + { + "amount": 250, + "fluid": "minecraft:water", + "nbt": {} + } + ], + "results": [ + { + "item": "deep_aether:aether_mud" + } + ] +} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/pressing/deep_aether_golden_dirt_path.json b/src/generated/resources/data/create/recipes/pressing/deep_aether_golden_dirt_path.json new file mode 100644 index 0000000000..7852cbd3fb --- /dev/null +++ b/src/generated/resources/data/create/recipes/pressing/deep_aether_golden_dirt_path.json @@ -0,0 +1,19 @@ +{ + "type": "create:pressing", + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "deep_aether" + } + ], + "ingredients": [ + { + "item": "deep_aether:golden_heights_grass_block" + } + ], + "results": [ + { + "item": "deep_aether:golden_heights_dirt_path" + } + ] +} \ No newline at end of file diff --git a/src/generated/resources/data/create/tags/blocks/fan_transparent.json b/src/generated/resources/data/create/tags/blocks/fan_transparent.json index 6dcdc1df9f..c1ceaebc1c 100644 --- a/src/generated/resources/data/create/tags/blocks/fan_transparent.json +++ b/src/generated/resources/data/create/tags/blocks/fan_transparent.json @@ -11,6 +11,10 @@ "minecraft:mangrove_roots", "#minecraft:campfires", "#minecraft:fences", - "#minecraft:leaves" + "#minecraft:leaves", + { + "id": "deep_aether:yagroot_roots", + "required": false + } ] } \ No newline at end of file diff --git a/src/generated/resources/data/create/tags/blocks/roots.json b/src/generated/resources/data/create/tags/blocks/roots.json index 43400c969a..588237af79 100644 --- a/src/generated/resources/data/create/tags/blocks/roots.json +++ b/src/generated/resources/data/create/tags/blocks/roots.json @@ -12,6 +12,10 @@ { "id": "twilightforest:mangrove_root", "required": false + }, + { + "id": "deep_aether:yagroot_roots", + "required": false } ] } \ No newline at end of file diff --git a/src/generated/resources/data/create/tags/blocks/tree_attachments.json b/src/generated/resources/data/create/tags/blocks/tree_attachments.json index ca9da984ba..29269cc949 100644 --- a/src/generated/resources/data/create/tags/blocks/tree_attachments.json +++ b/src/generated/resources/data/create/tags/blocks/tree_attachments.json @@ -5,6 +5,38 @@ "minecraft:mangrove_propagule", "minecraft:moss_carpet", "minecraft:shroomlight", - "minecraft:vine" + "minecraft:vine", + { + "id": "aether_redux:cloudcap_stem_wall", + "required": false + }, + { + "id": "aether_redux:cloudcap_spores", + "required": false + }, + { + "id": "aether_redux:blightwillow_log_wall", + "required": false + }, + { + "id": "aether_redux:golden_vines", + "required": false + }, + { + "id": "aether_redux:golden_vines_plant", + "required": false + }, + { + "id": "deep_aether:aether_moss_carpet", + "required": false + }, + { + "id": "deep_aether:yagroot_vine", + "required": false + }, + { + "id": "deep_aether:sunroot_hanger", + "required": false + } ] } \ No newline at end of file diff --git a/src/generated/resources/data/create/tags/items/modded_stripped_logs.json b/src/generated/resources/data/create/tags/items/modded_stripped_logs.json index 1da5f0de24..8cda952463 100644 --- a/src/generated/resources/data/create/tags/items/modded_stripped_logs.json +++ b/src/generated/resources/data/create/tags/items/modded_stripped_logs.json @@ -439,6 +439,58 @@ { "id": "regions_unexplored:brimwood_log_magma", "required": false + }, + { + "id": "aether:stripped_skyroot_log", + "required": false + }, + { + "id": "deep_aether:stripped_roseroot_log", + "required": false + }, + { + "id": "deep_aether:stripped_yagroot_log", + "required": false + }, + { + "id": "deep_aether:stripped_cruderoot_log", + "required": false + }, + { + "id": "deep_aether:stripped_conberry_log", + "required": false + }, + { + "id": "deep_aether:stripped_sunroot_log", + "required": false + }, + { + "id": "ancient_aether:stripped_highsproot_log", + "required": false + }, + { + "id": "ancient_aether:stripped_sakura_log", + "required": false + }, + { + "id": "aether_redux:stripped_fieldsproot_log", + "required": false + }, + { + "id": "aether_redux:stripped_blightwillow_log", + "required": false + }, + { + "id": "aether_redux:stripped_crystal_log", + "required": false + }, + { + "id": "aether_redux:stripped_glacia_log", + "required": false + }, + { + "id": "aether_redux:stripped_cloudcap_stem", + "required": false } ] } \ No newline at end of file diff --git a/src/generated/resources/data/create/tags/items/modded_stripped_wood.json b/src/generated/resources/data/create/tags/items/modded_stripped_wood.json index e37ca11d8a..6fe3af8691 100644 --- a/src/generated/resources/data/create/tags/items/modded_stripped_wood.json +++ b/src/generated/resources/data/create/tags/items/modded_stripped_wood.json @@ -431,6 +431,58 @@ { "id": "regions_unexplored:stripped_yellow_bioshroom_hyphae", "required": false + }, + { + "id": "aether:stripped_skyroot_wood", + "required": false + }, + { + "id": "deep_aether:stripped_roseroot_wood", + "required": false + }, + { + "id": "deep_aether:stripped_yagroot_wood", + "required": false + }, + { + "id": "deep_aether:stripped_cruderoot_wood", + "required": false + }, + { + "id": "deep_aether:stripped_conberry_wood", + "required": false + }, + { + "id": "deep_aether:stripped_sunroot_wood", + "required": false + }, + { + "id": "ancient_aether:stripped_highsproot_wood", + "required": false + }, + { + "id": "ancient_aether:stripped_sakura_wood", + "required": false + }, + { + "id": "aether_redux:stripped_fieldsproot_wood", + "required": false + }, + { + "id": "aether_redux:stripped_blightwillow_wood", + "required": false + }, + { + "id": "aether_redux:stripped_crystal_wood", + "required": false + }, + { + "id": "aether_redux:stripped_glacia_wood", + "required": false + }, + { + "id": "aether_redux:stripped_cloudcap_hyphae", + "required": false } ] } \ No newline at end of file diff --git a/src/generated/resources/data/create/tags/items/upright_on_belt.json b/src/generated/resources/data/create/tags/items/upright_on_belt.json index a7c54c1ef8..ff4ac7e75c 100644 --- a/src/generated/resources/data/create/tags/items/upright_on_belt.json +++ b/src/generated/resources/data/create/tags/items/upright_on_belt.json @@ -9,6 +9,30 @@ "minecraft:splash_potion", "minecraft:lingering_potion", "minecraft:honey_bottle", - "minecraft:cake" + "minecraft:cake", + { + "id": "aether:skyroot_bucket", + "required": false + }, + { + "id": "aether:skyroot_water_bucket", + "required": false + }, + { + "id": "aether:skyroot_milk_bucket", + "required": false + }, + { + "id": "aether:skyroot_remedy_bucket", + "required": false + }, + { + "id": "aether:skyroot_poison_bucket", + "required": false + }, + { + "id": "deep_aether:poison_bucket", + "required": false + } ] } \ No newline at end of file diff --git a/src/main/java/com/simibubi/create/foundation/data/recipe/CrushingRecipeGen.java b/src/main/java/com/simibubi/create/foundation/data/recipe/CrushingRecipeGen.java index e0f733278b..f755709c52 100644 --- a/src/main/java/com/simibubi/create/foundation/data/recipe/CrushingRecipeGen.java +++ b/src/main/java/com/simibubi/create/foundation/data/recipe/CrushingRecipeGen.java @@ -404,10 +404,29 @@ public class CrushingRecipeGen extends ProcessingRecipeGen { .output(0.75f, Mods.AET, "ambrosium_shard", 1) .output(0.125f, Mods.AET, "holystone", 1) .output(0.75f, AllItems.EXP_NUGGET.get()) - .whenModLoaded(Mods.AET.getId())) + .whenModLoaded(Mods.AET.getId())), + + // Deep Aether + + D_AET_SKYJADE = create(Mods.D_AET.recipeId("skyjade_ore"), b -> b.duration(150) + .require(Mods.D_AET, "skyjade_ore") + .output(Mods.D_AET, "skyjade") + .output(0.75f, Mods.D_AET, "skyjade", 1) + .output(0.125f, Mods.AET, "holystone", 1) + .output(0.75f, AllItems.EXP_NUGGET.get()) + .whenModLoaded(Mods.D_AET.getId())), + + // Ancient Aether + A_AET_QUARTZ = create(Mods.A_AET.recipeId("quartz_ore"), b -> b.duration(150) + .require(Mods.A_AET, "aether_quartz_ore") + .output(Items.QUARTZ) + .output(0.75f, Items.QUARTZ, 1) + .output(0.125f, Mods.AET, "holystone", 1) + .output(0.75f, AllItems.EXP_NUGGET.get()) + .whenModLoaded(Mods.A_AET.getId())) - ; + ; protected GeneratedRecipe mineralRecycling(AllPaletteStoneTypes type, Supplier crushed, Supplier nugget, float chance) { diff --git a/src/main/java/com/simibubi/create/foundation/data/recipe/CuttingRecipeGen.java b/src/main/java/com/simibubi/create/foundation/data/recipe/CuttingRecipeGen.java index 3d2cde96bd..3d13521514 100644 --- a/src/main/java/com/simibubi/create/foundation/data/recipe/CuttingRecipeGen.java +++ b/src/main/java/com/simibubi/create/foundation/data/recipe/CuttingRecipeGen.java @@ -164,8 +164,27 @@ public class CuttingRecipeGen extends ProcessingRecipeGen { WSP = cuttingCompat(Mods.WSP, "holly", "chestnut"), // Good Ending - GOOD = cuttingCompat(Mods.GOOD, "muddy_oak", "cypress") - + GOOD = cuttingCompat(Mods.GOOD, "muddy_oak", "cypress"), + + // The Aether + AET_1 = cuttingCompat(Mods.AET, "skyroot"), + AET_2 = stripAndMakePlanks(Mods.AET, "golden_oak_log", "stripped_skyroot_log", null), + AET_3 = stripAndMakePlanks(Mods.AET, "golden_oak_wood", "stripped_skyroot_wood", null), + + // Deep Aether + D_AET = cuttingCompat(Mods.D_AET, "roseroot", "yagroot", "cruderoot", "conberry", "sunroot"), + + // Ancient Aether + A_AET = cuttingCompat(Mods.A_AET, "highsproot", "sakura"), + + // Aether Redux + AET_R_1 = cuttingCompat(Mods.AET_R, "fieldsproot", "blightwillow", "crystal", "glacia"), + AET_R_2 = stripAndMakePlanks(Mods.AET_R, "sporing_blightwillow_log", "stripped_blightwillow_log", null), + AET_R_3 = stripAndMakePlanks(Mods.AET_R, "sporing_blightwillow_wood", "stripped_blightwillow_wood", null), + AET_R_4 = stripAndMakePlanks(Mods.AET_R, "cloudcap_stem", "stripped_cloudcap_stem", "cloudcap_planks"), + AET_R_5 = stripAndMakePlanks(Mods.AET_R, "cloudcap_hyphae", "stripped_cloudcap_hyphae", "cloudcap_planks"), + AET_R_6 = stripAndMakePlanks(Mods.AET_R, null, "jellyshroom_stem", "jellyshroom_planks"), + AET_R_7 = stripAndMakePlanks(Mods.AET_R, null, "jellyshroom_hyphae", "jellyshroom_planks") ; GeneratedRecipe stripAndMakePlanks(Block wood, Block stripped, Block planks) { diff --git a/src/main/java/com/simibubi/create/foundation/data/recipe/EmptyingRecipeGen.java b/src/main/java/com/simibubi/create/foundation/data/recipe/EmptyingRecipeGen.java index b499a606fc..17f7ef5290 100644 --- a/src/main/java/com/simibubi/create/foundation/data/recipe/EmptyingRecipeGen.java +++ b/src/main/java/com/simibubi/create/foundation/data/recipe/EmptyingRecipeGen.java @@ -38,7 +38,27 @@ public class EmptyingRecipeGen extends ProcessingRecipeGen { NEO_MILK = create(Mods.NEA.recipeId("milk_bottle"), b -> b.require(Mods.FD, "milk_bottle") .output(ForgeMod.MILK.get(), 250) .output(Items.GLASS_BOTTLE) - .whenModLoaded(Mods.NEA.getId())) + .whenModLoaded(Mods.NEA.getId())), + + AET_MILK = create(Mods.AET.recipeId("milk_bucket"), b -> b.require(Mods.AET, "skyroot_milk_bucket") + .output(ForgeMod.MILK.get(), 1000) + .output(Mods.AET, "skyroot_bucket") + .whenModLoaded(Mods.AET.getId())), + + AET_WATER = create(Mods.AET.recipeId("water_bucket"), b -> b.require(Mods.AET, "skyroot_water_bucket") + .output(Fluids.WATER, 1000) + .output(Mods.AET, "skyroot_bucket") + .whenModLoaded(Mods.AET.getId())), + + D_AET_POISON_1 = create(Mods.D_AET.recipeId("poison_bucket"), b -> b.require(Mods.D_AET, "poison_bucket") + .output(Mods.D_AET, "poison_fluid", 1000) + .output(Items.BUCKET) + .whenModLoaded(Mods.D_AET.getId())), + + D_AET_POISON_2 = create(Mods.D_AET.recipeId("skyroot_poison_bucket"), b -> b.require(Mods.AET, "skyroot_poison_bucket") + .output(Mods.D_AET, "poison_fluid", 1000) + .output(Mods.AET, "skyroot_bucket") + .whenModLoaded(Mods.D_AET.getId())) ; diff --git a/src/main/java/com/simibubi/create/foundation/data/recipe/FillingRecipeGen.java b/src/main/java/com/simibubi/create/foundation/data/recipe/FillingRecipeGen.java index 583f5ab66a..0c61590898 100644 --- a/src/main/java/com/simibubi/create/foundation/data/recipe/FillingRecipeGen.java +++ b/src/main/java/com/simibubi/create/foundation/data/recipe/FillingRecipeGen.java @@ -79,6 +79,16 @@ public class FillingRecipeGen extends ProcessingRecipeGen { AET_GRASS = moddedGrass(Mods.AET, "aether"), + AET_MILK_BUCKET = create(Mods.AET.recipeId("milk_bucket"), b -> b.require(Tags.Fluids.MILK, 1000) + .require(Mods.AET, "skyroot_bucket") + .output(Mods.AET, "skyroot_milk_bucket") + .whenModLoaded(Mods.AET.getId())), + + AET_WATER_BUCKET = create(Mods.AET.recipeId("water_bucket"), b -> b.require(Fluids.WATER, 1000) + .require(Mods.AET, "skyroot_bucket") + .output(Mods.AET, "skyroot_water_bucket") + .whenModLoaded(Mods.AET.getId())), + RU_PEAT_GRAS = moddedGrass(Mods.RU, "peat"), RU_SILT_GRAS = moddedGrass(Mods.RU, "silt"), @@ -88,7 +98,14 @@ public class FillingRecipeGen extends ProcessingRecipeGen { VMP_CURSED_GRASS = create(Mods.VMP.recipeId("cursed_grass"), b -> b.require(Fluids.WATER, 500) .require(Mods.VMP, "cursed_earth") .output(Mods.VMP, "cursed_grass") - .whenModLoaded(Mods.VMP.getId())); + .whenModLoaded(Mods.VMP.getId())), + + // Filling a normal bucket with Poison is already provided via Item Capabilities. + D_AET_POISON_BUCKET = create(Mods.D_AET.recipeId("skyroot_poison_bucket"), b -> b + .require(Mods.D_AET, "poison_fluid", 1000) + .require(Mods.AET, "skyroot_bucket") + .output(Mods.AET, "skyroot_poison_bucket") + .whenModLoaded(Mods.D_AET.getId())) ; diff --git a/src/main/java/com/simibubi/create/foundation/data/recipe/MillingRecipeGen.java b/src/main/java/com/simibubi/create/foundation/data/recipe/MillingRecipeGen.java index f0869c008e..8fe1444b82 100644 --- a/src/main/java/com/simibubi/create/foundation/data/recipe/MillingRecipeGen.java +++ b/src/main/java/com/simibubi/create/foundation/data/recipe/MillingRecipeGen.java @@ -719,7 +719,128 @@ public class MillingRecipeGen extends ProcessingRecipeGen { List.of(Items.YELLOW_DYE), List.of(2)), RU_YELLOW_SNOWBELLE = ruFlower("yellow_snowbelle", List.of(1f), - List.of(Items.YELLOW_DYE), List.of(2)) + List.of(Items.YELLOW_DYE), List.of(2)), + + // Aether + AET_PURPLE_FLOWER = modFlower(Mods.AET, "purple_flower", List.of(1f), + List.of(Items.PURPLE_DYE), List.of(2)), + + AET_WHITE_FLOWER = modFlower(Mods.AET, "white_flower", List.of(1f), + List.of(Items.WHITE_DYE), List.of(2)), + + // Deep Aether + D_AET_MINI_GRASS = create(Mods.D_AET.recipeId("mini_grass"), b -> b.duration(50) + .require(Mods.D_AET, "mini_golden_grass") + .output(0.25f, Items.WHEAT_SEEDS) + .output(0.2f, Mods.D_AET, "golden_grass_seeds", 1) + .output(0.02f, Mods.AET, "ambrosium_shard", 1) + .whenModLoaded(Mods.D_AET.getId())), + + D_AET_SHORT_GRASS = create(Mods.D_AET.recipeId("short_grass"), b -> b.duration(50) + .require(Mods.D_AET, "short_golden_grass") + .output(0.25f, Items.WHEAT_SEEDS) + .output(0.2f, Mods.D_AET, "golden_grass_seeds", 1) + .output(0.02f, Mods.AET, "ambrosium_shard", 1) + .whenModLoaded(Mods.D_AET.getId())), + + D_AET_MEDIUM_GRASS = create(Mods.D_AET.recipeId("medium_grass"), b -> b.duration(50) + .require(Mods.D_AET, "medium_golden_grass") + .output(0.25f, Items.WHEAT_SEEDS) + .output(0.2f, Mods.D_AET, "golden_grass_seeds", 1) + .output(0.02f, Mods.AET, "ambrosium_shard", 1) + .whenModLoaded(Mods.D_AET.getId())), + + D_AET_TALL_GRASS = create(Mods.D_AET.recipeId("tall_grass"), b -> b.duration(50) + .require(Mods.D_AET, "tall_golden_grass") + .output(0.5f, Items.WHEAT_SEEDS) + .output(0.4f, Mods.D_AET, "golden_grass_seeds", 1) + .output(0.04f, Mods.AET, "ambrosium_shard", 1) + .whenModLoaded(Mods.D_AET.getId())), + + D_AET_RADIANT_ORCHID = modFlower(Mods.D_AET, "radiant_orchid", List.of(1f), + List.of(Items.PURPLE_DYE), List.of(2)), + + D_AET_AERLAVENDER = modFlower(Mods.D_AET, "aerlavender", List.of(1f), + List.of(Items.PINK_DYE), List.of(2)), + + D_AET_TALL_AERLAVENDER = modFlower(Mods.D_AET, "tall_aerlavender", List.of(1f, 0.25f), + List.of(Items.PINK_DYE, Items.PINK_DYE), List.of(3, 2)), + + D_AET_CATTAILS = modFlower(Mods.D_AET, "aether_cattails", List.of(1f), + List.of(Items.CYAN_DYE), List.of(2)), + + D_AET_TALL_CATTAILS = modFlower(Mods.D_AET, "tall_aether_cattails", List.of(1f, 0.25f), + List.of(Items.CYAN_DYE, Items.CYAN_DYE), List.of(3, 2)), + + D_AET_GOLDEN_FLOWER = modFlower(Mods.D_AET, "golden_flower", List.of(1f, 0.25f), + List.of(Items.ORANGE_DYE, Items.PINK_DYE), List.of(2, 1)), + + D_AET_ENCHANTED_BLOSSOM = modFlower(Mods.D_AET, "enchanted_blossom", List.of(1f, 0.25f), + List.of(Items.WHITE_DYE, Items.YELLOW_DYE), List.of(2, 1)), + + D_AET_SKY_TULIPS = modFlower(Mods.D_AET, "sky_tulips", List.of(1f), + List.of(Items.RED_DYE), List.of(2)), + + D_AET_IASPOVE = modFlower(Mods.D_AET, "iaspove", List.of(1f), + List.of(Items.BLUE_DYE), List.of(2)), + + D_AET_GOLDEN_ASPESS = modFlower(Mods.D_AET, "golden_aspess", List.of(1f), + List.of(Items.ORANGE_DYE), List.of(2)), + + D_AET_ECHAISY = modFlower(Mods.D_AET, "echaisy", List.of(1f), + List.of(Items.PURPLE_DYE), List.of(2)), + + // Ancient Aether + A_AET_CLAY = create(Mods.A_AET.recipeId("valkyrie_clay"), b -> b.duration(50) + .require(Mods.A_AET, "valkyrie_clay") + .output(1, Mods.A_AET, "valkyrie_clay_ball", 3) + .output(.5f, Mods.A_AET, "valkyrie_clay_ball", 1)), + + A_AET_SUNSET_ROSE = modFlower(Mods.A_AET, "sunset_rose", List.of(1f), + List.of(Items.RED_DYE), List.of(2)), + + A_AET_SKY_BLUES = modFlower(Mods.A_AET, "sky_blues", List.of(1f), + List.of(Items.CYAN_DYE), List.of(2)), + + A_AET_WYND_THISTLE = modFlower(Mods.A_AET, "wynd_thistle", List.of(1f), + List.of(Items.LIGHT_BLUE_DYE), List.of(2)), + + A_AET_ELEVETIA = modFlower(Mods.A_AET, "elevetia", List.of(1f, 0.25f), + List.of(Items.PURPLE_DYE, Items.BLACK_DYE), List.of(2, 1)), + + // Aether Redux + AET_R_WYNDSPROUTS = modFlower(Mods.AET_R, "wyndsprouts", List.of(1f), + List.of(Items.LIGHT_GRAY_DYE), List.of(2)), + AET_R_SKYSPROUTS = modFlower(Mods.AET_R, "skysprouts", List.of(1f), + List.of(Items.LIGHT_BLUE_DYE), List.of(2)), + AET_R_FIELDSPROOT_PETALS = modFlower(Mods.AET_R, "fieldsproot_petals", List.of(0.25f, 0.25f, 0.25f, 0.25f), + List.of(Items.LIGHT_BLUE_DYE, Items.PINK_DYE, Items.MAGENTA_DYE, Items.BLACK_DYE), List.of(1, 1, 1, 1)), + AET_R_IRIDIA = modFlower(Mods.AET_R, "iridia", List.of(1f), + List.of(Items.MAGENTA_DYE), List.of(2)), + AET_R_XAELIA_PATCH = modFlower(Mods.AET_R, "xaelia_patch", List.of(1f), + List.of(Items.LIGHT_GRAY_DYE), List.of(2)), + AET_R_AURUM = modFlower(Mods.AET_R, "aurum", List.of(1f), + List.of(Items.YELLOW_DYE), List.of(2)), + AET_R_GOLDEN_CLOVER = modFlower(Mods.AET_R, "golden_clover", List.of(1f), + List.of(Items.YELLOW_DYE), List.of(2)), + AET_R_ZYATRIX = modFlower(Mods.AET_R, "zyatrix", List.of(1f, 0.25f), + List.of(Items.PURPLE_DYE, Items.ORANGE_DYE), List.of(2, 1)), + AET_R_LUXWEED = modFlower(Mods.AET_R, "luxweed", List.of(1f, 0.5f), + List.of(Items.LIGHT_BLUE_DYE, Items.PURPLE_DYE), List.of(1, 1)), + AET_R_SPIROLYCTIL = modFlower(Mods.AET_R, "spirolyctil", List.of(1f, 0.25f), + List.of(Items.LIGHT_BLUE_DYE, Items.PURPLE_DYE), List.of(2, 1)), + AET_R_BLIGHTSHADE = modFlower(Mods.AET_R, "blightshade", List.of(1f, 0.25f), + List.of(Items.PURPLE_DYE, Items.BLACK_DYE), List.of(2, 1)), + AET_R_LUMINA = modFlower(Mods.AET_R, "lumina", List.of(1f), + List.of(Items.BLACK_DYE), List.of(2)), + AET_R_DAGGERBLOOM = modFlower(Mods.AET_R, "daggerbloom", List.of(1f, 0.25f), + List.of(Items.WHITE_DYE, Items.LIGHT_BLUE_DYE), List.of(2, 1)), + AET_R_THERATIP = modFlower(Mods.AET_R, "theratip", List.of(1f), + List.of(Items.PINK_DYE), List.of(2)), + AET_R_FLAREBLOSSOM = modFlower(Mods.AET_R, "flareblossom", List.of(1f, 0.25f), + List.of(Items.WHITE_DYE, Items.RED_DYE), List.of(2, 2)), + AET_R_INFERNIA = modFlower(Mods.AET_R, "infernia", List.of(1f, 0.5f, 0.25f), + List.of(Items.BLAZE_POWDER, Items.BLAZE_POWDER, Items.ORANGE_DYE), List.of(1, 1, 2)) ; protected GeneratedRecipe metalOre(String name, ItemEntry crushed, int duration) { diff --git a/src/main/java/com/simibubi/create/foundation/data/recipe/MixingRecipeGen.java b/src/main/java/com/simibubi/create/foundation/data/recipe/MixingRecipeGen.java index c8534f278b..647254b00a 100644 --- a/src/main/java/com/simibubi/create/foundation/data/recipe/MixingRecipeGen.java +++ b/src/main/java/com/simibubi/create/foundation/data/recipe/MixingRecipeGen.java @@ -75,7 +75,13 @@ public class MixingRecipeGen extends ProcessingRecipeGen { // Regions Unexplored RU_PEAT_MUD = moddedMud(Mods.RU, "peat"), - RU_SILT_MUD = moddedMud(Mods.RU, "silt") + RU_SILT_MUD = moddedMud(Mods.RU, "silt"), + + // Deep Aether + D_AET_MUD = create(Mods.D_AET.recipeId("aether_mud"), b -> b.require(Fluids.WATER, 250) + .require(Mods.AET, "aether_dirt") + .output(Mods.D_AET, "aether_mud") + .whenModLoaded(Mods.D_AET.getId())) ; diff --git a/src/main/java/com/simibubi/create/foundation/data/recipe/PressingRecipeGen.java b/src/main/java/com/simibubi/create/foundation/data/recipe/PressingRecipeGen.java index bea7083415..c5a669c764 100644 --- a/src/main/java/com/simibubi/create/foundation/data/recipe/PressingRecipeGen.java +++ b/src/main/java/com/simibubi/create/foundation/data/recipe/PressingRecipeGen.java @@ -92,7 +92,10 @@ public class PressingRecipeGen extends ProcessingRecipeGen { VMP_CURSED_PATH_GRASS = create("cursed_earth_path_from_grass", b -> b.require(Mods.VMP, "cursed_grass") .output(Mods.VMP, "cursed_earth_path") - .whenModLoaded(Mods.VMP.getId())) + .whenModLoaded(Mods.VMP.getId())), + + // Deep Aether + D_AET_GOLDEN_DIRT_PATH = moddedCompacting(Mods.D_AET, "golden_heights_grass_block", "golden_heights_dirt_path"); ; diff --git a/src/main/java/com/simibubi/create/infrastructure/data/CreateRegistrateTags.java b/src/main/java/com/simibubi/create/infrastructure/data/CreateRegistrateTags.java index 157577e507..2236d32ff8 100644 --- a/src/main/java/com/simibubi/create/infrastructure/data/CreateRegistrateTags.java +++ b/src/main/java/com/simibubi/create/infrastructure/data/CreateRegistrateTags.java @@ -134,6 +134,17 @@ private static void genBlockTags(RegistrateTagsProvider provIn) { TagGen.addOptional(prov.tag(AllBlockTags.ROOTS.tag), Mods.TF, List.of("root", "liveroot_block", "mangrove_root")); + TagGen.addOptional(prov.tag(AllBlockTags.ROOTS.tag), Mods.D_AET, + List.of("yagroot_roots")); + + TagGen.addOptional(prov.tag(AllBlockTags.FAN_TRANSPARENT.tag), Mods.D_AET, + List.of("yagroot_roots")); + + TagGen.addOptional(prov.tag(AllBlockTags.TREE_ATTACHMENTS.tag), Mods.AET_R, + List.of("cloudcap_stem_wall", "cloudcap_spores", "blightwillow_log_wall", "golden_vines", "golden_vines_plant")); + TagGen.addOptional(prov.tag(AllBlockTags.TREE_ATTACHMENTS.tag), Mods.D_AET, + List.of("aether_moss_carpet", "yagroot_vine", "sunroot_hanger")); + // VALIDATE for (AllBlockTags tag : AllBlockTags.values()) { @@ -201,6 +212,11 @@ private static void genItemTags(RegistrateTagsProvider provIn) { "finger_coral", "star_coral", "moss_coral", "petal_coral", "branch_coral", "rock_coral", "pillow_coral", "chrome_coral", "silk_coral")); + TagGen.addOptional(prov.tag(AllItemTags.UPRIGHT_ON_BELT.tag), Mods.AET, List.of("skyroot_bucket", + "skyroot_water_bucket", "skyroot_milk_bucket", "skyroot_remedy_bucket", "skyroot_poison_bucket")); + + TagGen.addOptional(prov.tag(AllItemTags.UPRIGHT_ON_BELT.tag), Mods.D_AET, List.of("poison_bucket")); + // VALIDATE for (AllItemTags tag : AllItemTags.values()) { @@ -273,6 +289,13 @@ private static void genStrippedWoodItemTags(CreateTagsProvider prov) { TagGen.addOptional(logAppender, Mods.RU, "stripped_yellow_bioshroom_stem"); TagGen.addOptional(woodAppender, Mods.RU, "stripped_yellow_bioshroom_hyphae"); TagGen.addOptional(logAppender, Mods.RU, "brimwood_log_magma"); + + helper.add(Mods.AET, "skyroot"); + helper.add(Mods.D_AET, "roseroot", "yagroot", "cruderoot", "conberry", "sunroot"); + helper.add(Mods.A_AET, "highsproot", "sakura"); + helper.add(Mods.AET_R, "fieldsproot", "blightwillow", "crystal", "glacia"); + TagGen.addOptional(logAppender, Mods.AET_R, "stripped_cloudcap_stem"); + TagGen.addOptional(woodAppender, Mods.AET_R, "stripped_cloudcap_hyphae"); } private static void genFluidTags(RegistrateTagsProvider provIn) { From fb9e0df94b3d5a260ba69ade6ad51e62495da6a0 Mon Sep 17 00:00:00 2001 From: VoidLeech Date: Sun, 12 Jan 2025 22:49:34 +0100 Subject: [PATCH 5/6] review: revert cutting recipe additions --- .../data/recipe/CuttingRecipeGen.java | 23 ++----------------- 1 file changed, 2 insertions(+), 21 deletions(-) diff --git a/src/main/java/com/simibubi/create/foundation/data/recipe/CuttingRecipeGen.java b/src/main/java/com/simibubi/create/foundation/data/recipe/CuttingRecipeGen.java index 3d13521514..3d2cde96bd 100644 --- a/src/main/java/com/simibubi/create/foundation/data/recipe/CuttingRecipeGen.java +++ b/src/main/java/com/simibubi/create/foundation/data/recipe/CuttingRecipeGen.java @@ -164,27 +164,8 @@ public class CuttingRecipeGen extends ProcessingRecipeGen { WSP = cuttingCompat(Mods.WSP, "holly", "chestnut"), // Good Ending - GOOD = cuttingCompat(Mods.GOOD, "muddy_oak", "cypress"), - - // The Aether - AET_1 = cuttingCompat(Mods.AET, "skyroot"), - AET_2 = stripAndMakePlanks(Mods.AET, "golden_oak_log", "stripped_skyroot_log", null), - AET_3 = stripAndMakePlanks(Mods.AET, "golden_oak_wood", "stripped_skyroot_wood", null), - - // Deep Aether - D_AET = cuttingCompat(Mods.D_AET, "roseroot", "yagroot", "cruderoot", "conberry", "sunroot"), - - // Ancient Aether - A_AET = cuttingCompat(Mods.A_AET, "highsproot", "sakura"), - - // Aether Redux - AET_R_1 = cuttingCompat(Mods.AET_R, "fieldsproot", "blightwillow", "crystal", "glacia"), - AET_R_2 = stripAndMakePlanks(Mods.AET_R, "sporing_blightwillow_log", "stripped_blightwillow_log", null), - AET_R_3 = stripAndMakePlanks(Mods.AET_R, "sporing_blightwillow_wood", "stripped_blightwillow_wood", null), - AET_R_4 = stripAndMakePlanks(Mods.AET_R, "cloudcap_stem", "stripped_cloudcap_stem", "cloudcap_planks"), - AET_R_5 = stripAndMakePlanks(Mods.AET_R, "cloudcap_hyphae", "stripped_cloudcap_hyphae", "cloudcap_planks"), - AET_R_6 = stripAndMakePlanks(Mods.AET_R, null, "jellyshroom_stem", "jellyshroom_planks"), - AET_R_7 = stripAndMakePlanks(Mods.AET_R, null, "jellyshroom_hyphae", "jellyshroom_planks") + GOOD = cuttingCompat(Mods.GOOD, "muddy_oak", "cypress") + ; GeneratedRecipe stripAndMakePlanks(Block wood, Block stripped, Block planks) { From 2f81365372b848fe77f7aa0cd17add47794a814c Mon Sep 17 00:00:00 2001 From: VoidLeech Date: Sun, 12 Jan 2025 22:54:17 +0100 Subject: [PATCH 6/6] chore: run datagen --- .../b256105d8411632b0d585496ea8944a751a08034 | 62 +------------------ .../cutting/compat/aether/golden_oak_log.json | 20 ------ .../compat/aether/golden_oak_wood.json | 20 ------ .../cutting/compat/aether/skyroot_log.json | 20 ------ .../cutting/compat/aether/skyroot_wood.json | 20 ------ .../compat/aether/stripped_skyroot_log.json | 21 ------- .../compat/aether/stripped_skyroot_wood.json | 21 ------- .../compat/aether_redux/blightwillow_log.json | 20 ------ .../aether_redux/blightwillow_wood.json | 20 ------ .../compat/aether_redux/cloudcap_hyphae.json | 20 ------ .../compat/aether_redux/cloudcap_stem.json | 20 ------ .../compat/aether_redux/crystal_log.json | 20 ------ .../compat/aether_redux/crystal_wood.json | 20 ------ .../compat/aether_redux/fieldsproot_log.json | 20 ------ .../compat/aether_redux/fieldsproot_wood.json | 20 ------ .../compat/aether_redux/glacia_log.json | 20 ------ .../compat/aether_redux/glacia_wood.json | 20 ------ .../aether_redux/jellyshroom_hyphae.json | 21 ------- .../compat/aether_redux/jellyshroom_stem.json | 21 ------- .../sporing_blightwillow_log.json | 20 ------ .../sporing_blightwillow_wood.json | 20 ------ .../stripped_blightwillow_log.json | 21 ------- .../stripped_blightwillow_wood.json | 21 ------- .../stripped_cloudcap_hyphae.json | 21 ------- .../aether_redux/stripped_cloudcap_stem.json | 21 ------- .../aether_redux/stripped_crystal_log.json | 21 ------- .../aether_redux/stripped_crystal_wood.json | 21 ------- .../stripped_fieldsproot_log.json | 21 ------- .../stripped_fieldsproot_wood.json | 21 ------- .../aether_redux/stripped_glacia_log.json | 21 ------- .../aether_redux/stripped_glacia_wood.json | 21 ------- .../compat/ancient_aether/highsproot_log.json | 20 ------ .../ancient_aether/highsproot_wood.json | 20 ------ .../compat/ancient_aether/sakura_log.json | 20 ------ .../compat/ancient_aether/sakura_wood.json | 20 ------ .../stripped_highsproot_log.json | 21 ------- .../stripped_highsproot_wood.json | 21 ------- .../ancient_aether/stripped_sakura_log.json | 21 ------- .../ancient_aether/stripped_sakura_wood.json | 21 ------- .../compat/deep_aether/conberry_log.json | 20 ------ .../compat/deep_aether/conberry_wood.json | 20 ------ .../compat/deep_aether/cruderoot_log.json | 20 ------ .../compat/deep_aether/cruderoot_wood.json | 20 ------ .../compat/deep_aether/roseroot_log.json | 20 ------ .../compat/deep_aether/roseroot_wood.json | 20 ------ .../deep_aether/stripped_conberry_log.json | 21 ------- .../deep_aether/stripped_conberry_wood.json | 21 ------- .../deep_aether/stripped_cruderoot_log.json | 21 ------- .../deep_aether/stripped_cruderoot_wood.json | 21 ------- .../deep_aether/stripped_roseroot_log.json | 21 ------- .../deep_aether/stripped_roseroot_wood.json | 21 ------- .../deep_aether/stripped_sunroot_log.json | 21 ------- .../deep_aether/stripped_sunroot_wood.json | 21 ------- .../deep_aether/stripped_yagroot_log.json | 21 ------- .../deep_aether/stripped_yagroot_wood.json | 21 ------- .../compat/deep_aether/sunroot_log.json | 20 ------ .../compat/deep_aether/sunroot_wood.json | 20 ------ .../compat/deep_aether/yagroot_log.json | 20 ------ .../compat/deep_aether/yagroot_wood.json | 20 ------ .../golden_heights_dirt_path.json} | 0 60 files changed, 2 insertions(+), 1248 deletions(-) delete mode 100644 src/generated/resources/data/create/recipes/cutting/compat/aether/golden_oak_log.json delete mode 100644 src/generated/resources/data/create/recipes/cutting/compat/aether/golden_oak_wood.json delete mode 100644 src/generated/resources/data/create/recipes/cutting/compat/aether/skyroot_log.json delete mode 100644 src/generated/resources/data/create/recipes/cutting/compat/aether/skyroot_wood.json delete mode 100644 src/generated/resources/data/create/recipes/cutting/compat/aether/stripped_skyroot_log.json delete mode 100644 src/generated/resources/data/create/recipes/cutting/compat/aether/stripped_skyroot_wood.json delete mode 100644 src/generated/resources/data/create/recipes/cutting/compat/aether_redux/blightwillow_log.json delete mode 100644 src/generated/resources/data/create/recipes/cutting/compat/aether_redux/blightwillow_wood.json delete mode 100644 src/generated/resources/data/create/recipes/cutting/compat/aether_redux/cloudcap_hyphae.json delete mode 100644 src/generated/resources/data/create/recipes/cutting/compat/aether_redux/cloudcap_stem.json delete mode 100644 src/generated/resources/data/create/recipes/cutting/compat/aether_redux/crystal_log.json delete mode 100644 src/generated/resources/data/create/recipes/cutting/compat/aether_redux/crystal_wood.json delete mode 100644 src/generated/resources/data/create/recipes/cutting/compat/aether_redux/fieldsproot_log.json delete mode 100644 src/generated/resources/data/create/recipes/cutting/compat/aether_redux/fieldsproot_wood.json delete mode 100644 src/generated/resources/data/create/recipes/cutting/compat/aether_redux/glacia_log.json delete mode 100644 src/generated/resources/data/create/recipes/cutting/compat/aether_redux/glacia_wood.json delete mode 100644 src/generated/resources/data/create/recipes/cutting/compat/aether_redux/jellyshroom_hyphae.json delete mode 100644 src/generated/resources/data/create/recipes/cutting/compat/aether_redux/jellyshroom_stem.json delete mode 100644 src/generated/resources/data/create/recipes/cutting/compat/aether_redux/sporing_blightwillow_log.json delete mode 100644 src/generated/resources/data/create/recipes/cutting/compat/aether_redux/sporing_blightwillow_wood.json delete mode 100644 src/generated/resources/data/create/recipes/cutting/compat/aether_redux/stripped_blightwillow_log.json delete mode 100644 src/generated/resources/data/create/recipes/cutting/compat/aether_redux/stripped_blightwillow_wood.json delete mode 100644 src/generated/resources/data/create/recipes/cutting/compat/aether_redux/stripped_cloudcap_hyphae.json delete mode 100644 src/generated/resources/data/create/recipes/cutting/compat/aether_redux/stripped_cloudcap_stem.json delete mode 100644 src/generated/resources/data/create/recipes/cutting/compat/aether_redux/stripped_crystal_log.json delete mode 100644 src/generated/resources/data/create/recipes/cutting/compat/aether_redux/stripped_crystal_wood.json delete mode 100644 src/generated/resources/data/create/recipes/cutting/compat/aether_redux/stripped_fieldsproot_log.json delete mode 100644 src/generated/resources/data/create/recipes/cutting/compat/aether_redux/stripped_fieldsproot_wood.json delete mode 100644 src/generated/resources/data/create/recipes/cutting/compat/aether_redux/stripped_glacia_log.json delete mode 100644 src/generated/resources/data/create/recipes/cutting/compat/aether_redux/stripped_glacia_wood.json delete mode 100644 src/generated/resources/data/create/recipes/cutting/compat/ancient_aether/highsproot_log.json delete mode 100644 src/generated/resources/data/create/recipes/cutting/compat/ancient_aether/highsproot_wood.json delete mode 100644 src/generated/resources/data/create/recipes/cutting/compat/ancient_aether/sakura_log.json delete mode 100644 src/generated/resources/data/create/recipes/cutting/compat/ancient_aether/sakura_wood.json delete mode 100644 src/generated/resources/data/create/recipes/cutting/compat/ancient_aether/stripped_highsproot_log.json delete mode 100644 src/generated/resources/data/create/recipes/cutting/compat/ancient_aether/stripped_highsproot_wood.json delete mode 100644 src/generated/resources/data/create/recipes/cutting/compat/ancient_aether/stripped_sakura_log.json delete mode 100644 src/generated/resources/data/create/recipes/cutting/compat/ancient_aether/stripped_sakura_wood.json delete mode 100644 src/generated/resources/data/create/recipes/cutting/compat/deep_aether/conberry_log.json delete mode 100644 src/generated/resources/data/create/recipes/cutting/compat/deep_aether/conberry_wood.json delete mode 100644 src/generated/resources/data/create/recipes/cutting/compat/deep_aether/cruderoot_log.json delete mode 100644 src/generated/resources/data/create/recipes/cutting/compat/deep_aether/cruderoot_wood.json delete mode 100644 src/generated/resources/data/create/recipes/cutting/compat/deep_aether/roseroot_log.json delete mode 100644 src/generated/resources/data/create/recipes/cutting/compat/deep_aether/roseroot_wood.json delete mode 100644 src/generated/resources/data/create/recipes/cutting/compat/deep_aether/stripped_conberry_log.json delete mode 100644 src/generated/resources/data/create/recipes/cutting/compat/deep_aether/stripped_conberry_wood.json delete mode 100644 src/generated/resources/data/create/recipes/cutting/compat/deep_aether/stripped_cruderoot_log.json delete mode 100644 src/generated/resources/data/create/recipes/cutting/compat/deep_aether/stripped_cruderoot_wood.json delete mode 100644 src/generated/resources/data/create/recipes/cutting/compat/deep_aether/stripped_roseroot_log.json delete mode 100644 src/generated/resources/data/create/recipes/cutting/compat/deep_aether/stripped_roseroot_wood.json delete mode 100644 src/generated/resources/data/create/recipes/cutting/compat/deep_aether/stripped_sunroot_log.json delete mode 100644 src/generated/resources/data/create/recipes/cutting/compat/deep_aether/stripped_sunroot_wood.json delete mode 100644 src/generated/resources/data/create/recipes/cutting/compat/deep_aether/stripped_yagroot_log.json delete mode 100644 src/generated/resources/data/create/recipes/cutting/compat/deep_aether/stripped_yagroot_wood.json delete mode 100644 src/generated/resources/data/create/recipes/cutting/compat/deep_aether/sunroot_log.json delete mode 100644 src/generated/resources/data/create/recipes/cutting/compat/deep_aether/sunroot_wood.json delete mode 100644 src/generated/resources/data/create/recipes/cutting/compat/deep_aether/yagroot_log.json delete mode 100644 src/generated/resources/data/create/recipes/cutting/compat/deep_aether/yagroot_wood.json rename src/generated/resources/data/create/recipes/pressing/{deep_aether_golden_dirt_path.json => compat/deep_aether/golden_heights_dirt_path.json} (100%) diff --git a/src/generated/resources/.cache/b256105d8411632b0d585496ea8944a751a08034 b/src/generated/resources/.cache/b256105d8411632b0d585496ea8944a751a08034 index 773c7fc933..fae5aecc2f 100644 --- a/src/generated/resources/.cache/b256105d8411632b0d585496ea8944a751a08034 +++ b/src/generated/resources/.cache/b256105d8411632b0d585496ea8944a751a08034 @@ -1,4 +1,4 @@ -// 1.20.1 2024-10-19T21:58:24.0622958 Create's Processing Recipes +// 1.20.1 2025-01-12T22:52:35.7460484 Create's Processing Recipes 3c94326fb730f68c1e44fe1e2ef09c9db6ffd92b data/create/recipes/compacting/andesite_from_flint.json 8d3d5b31f3601b9f681ff710e0545a483a1494c6 data/create/recipes/compacting/blaze_cake.json 8bd7f4e3a686ab520b2d55594d2018d0e9a50c91 data/create/recipes/compacting/chocolate.json @@ -164,44 +164,6 @@ cdb26cd91feeda5901f31f57c16517dda5287810 data/create/recipes/cutting/andesite_al 71c3a093c849a99fbaef8772114ac9305627f2c1 data/create/recipes/cutting/birch_wood.json 31a1713f8bc5577b3fcf2fcfd2d42dac145f9560 data/create/recipes/cutting/cherry_log.json 0f54293540ad75e6395452253f4ab5c8e5166e93 data/create/recipes/cutting/cherry_wood.json -cc8b3de42fc5236db9eb51ab4f81cdc2186bb9af data/create/recipes/cutting/compat/aether/golden_oak_log.json -2857293080dabab340d0b18b36d9299d7e8cad06 data/create/recipes/cutting/compat/aether/golden_oak_wood.json -5c8f9f15557a3476d468632ea3cbf61bbc52764f data/create/recipes/cutting/compat/aether/skyroot_log.json -89232e19be04f5feba289ff3a7170e49716654ce data/create/recipes/cutting/compat/aether/skyroot_wood.json -36a2992619667e878795de798f69f58c0096774d data/create/recipes/cutting/compat/aether/stripped_skyroot_log.json -04bcc459ae9c31b17117846aa16a9e0eb183b4cd data/create/recipes/cutting/compat/aether/stripped_skyroot_wood.json -7299bca9556007783cbbe285d86a71f57cc9ab95 data/create/recipes/cutting/compat/aether_redux/blightwillow_log.json -58c8e6e022525d7f0ae3ca07aaafc2d488690b1e data/create/recipes/cutting/compat/aether_redux/blightwillow_wood.json -9b92220a4ab4754ef4bec6e9d245758fad3abfdd data/create/recipes/cutting/compat/aether_redux/cloudcap_hyphae.json -84b46731bab6d3e243dc8b341959f4ef402e2178 data/create/recipes/cutting/compat/aether_redux/cloudcap_stem.json -d1afe99f9d8da4afd819a14241daaf5e49f91604 data/create/recipes/cutting/compat/aether_redux/crystal_log.json -c7f6a1279a378a9f5c54b5abf8d8d7372735a422 data/create/recipes/cutting/compat/aether_redux/crystal_wood.json -c10aa4373bf4c1817fe30243f18a7a62675b59f4 data/create/recipes/cutting/compat/aether_redux/fieldsproot_log.json -0ef26b7ca64a1acd87fef1af6e1c646021a891a0 data/create/recipes/cutting/compat/aether_redux/fieldsproot_wood.json -73c32f833bf1791a71eaf9700eecff3a9fea13fe data/create/recipes/cutting/compat/aether_redux/glacia_log.json -7be3f57f070460f2aafbf68c5b2caa0ef742402d data/create/recipes/cutting/compat/aether_redux/glacia_wood.json -54ad4cd8ea7e41e8e2a7ecb964dd22afdbf1cf9c data/create/recipes/cutting/compat/aether_redux/jellyshroom_hyphae.json -a3b153da69d00faadbe0b1800ddf5a77cf0a2899 data/create/recipes/cutting/compat/aether_redux/jellyshroom_stem.json -263d8bdf83a310f83ec76ec95b5177d550d842ac data/create/recipes/cutting/compat/aether_redux/sporing_blightwillow_log.json -75e4569b22ab71e45d2289451c9ef8093a7d2062 data/create/recipes/cutting/compat/aether_redux/sporing_blightwillow_wood.json -36f2c7d078c098fc42b100d6a57d3f59302dd818 data/create/recipes/cutting/compat/aether_redux/stripped_blightwillow_log.json -5269063068b66f96d8919a61fe4562fd93076546 data/create/recipes/cutting/compat/aether_redux/stripped_blightwillow_wood.json -54296f21e081299ce5316818e0493b9ff2047ad5 data/create/recipes/cutting/compat/aether_redux/stripped_cloudcap_hyphae.json -f5923cc9d481cb35a0e8825452083c960798bb42 data/create/recipes/cutting/compat/aether_redux/stripped_cloudcap_stem.json -0512511c86f50abab74dbd5549b78dba73978943 data/create/recipes/cutting/compat/aether_redux/stripped_crystal_log.json -f2449e6a832825a5e9fe7f156b3e4fc684de2a64 data/create/recipes/cutting/compat/aether_redux/stripped_crystal_wood.json -694181624226e2376d0d4d06a5e62552ca3a08f6 data/create/recipes/cutting/compat/aether_redux/stripped_fieldsproot_log.json -3a1360a4165f4cbf4a6d8ed55774ad5a00f9f8ff data/create/recipes/cutting/compat/aether_redux/stripped_fieldsproot_wood.json -a55e891c8da3b3b157d62296b4d8e6aad0852900 data/create/recipes/cutting/compat/aether_redux/stripped_glacia_log.json -b8b8c2589b9ba8b728f459e9b35dd0638902786b data/create/recipes/cutting/compat/aether_redux/stripped_glacia_wood.json -980e2179ea26e2270ec754afe939f2831ac38207 data/create/recipes/cutting/compat/ancient_aether/highsproot_log.json -890a542adcd7ac1face7008c5824f598870b17c0 data/create/recipes/cutting/compat/ancient_aether/highsproot_wood.json -adab032d27468f6f2dd80f0d7cd1d65545f2c0c4 data/create/recipes/cutting/compat/ancient_aether/sakura_log.json -fc6f706a6a27de1e9fa6627a515357c2c10d90b0 data/create/recipes/cutting/compat/ancient_aether/sakura_wood.json -786a417e2ea0952522b5a913785accd3e6adbcca data/create/recipes/cutting/compat/ancient_aether/stripped_highsproot_log.json -dd19b5ecc8b91780fc100cabdc82ee5ee3dba18f data/create/recipes/cutting/compat/ancient_aether/stripped_highsproot_wood.json -69979aed592dbf32471519eb48bce268708e72f6 data/create/recipes/cutting/compat/ancient_aether/stripped_sakura_log.json -a0c6514645bb732ce0ab7c9810a0ebac4c9cb4d9 data/create/recipes/cutting/compat/ancient_aether/stripped_sakura_wood.json 4f756e256a7814e2b9a6632d38633bb78c5046cd data/create/recipes/cutting/compat/architects_palette/stripped_twisted_log.json 310dfb6c7e7649c0ede306fda71459e7f2bc8c7e data/create/recipes/cutting/compat/architects_palette/stripped_twisted_wood.json 8645e8ee47b0a6a432f85b7f2e07957e21adeb70 data/create/recipes/cutting/compat/architects_palette/twisted_log.json @@ -436,26 +398,6 @@ f4283de13917784d85c0ba84f68424ec8b69545f data/create/recipes/cutting/compat/byg/ 88b328cf0c0a02f296056abb423e4f3745e5ab4d data/create/recipes/cutting/compat/byg/witch_hazel_wood.json 31a331b2294c726f0e6b4573b1db14c2423116b2 data/create/recipes/cutting/compat/byg/zelkova_log.json f249713773128375a0869a8df3205b384e2b54f4 data/create/recipes/cutting/compat/byg/zelkova_wood.json -20e6e40a9026b69e0f52590a33f9a790e363b483 data/create/recipes/cutting/compat/deep_aether/conberry_log.json -f6191cc04a73f04267a9b88f7346c26499d99291 data/create/recipes/cutting/compat/deep_aether/conberry_wood.json -bd6277d709f8652e455690d69b3c23aae39ffc3e data/create/recipes/cutting/compat/deep_aether/cruderoot_log.json -39f7acada24288971f9952a60c3d3ce9d01ddad8 data/create/recipes/cutting/compat/deep_aether/cruderoot_wood.json -235251ecc686912110e95b66712d0363282f812f data/create/recipes/cutting/compat/deep_aether/roseroot_log.json -34d9c9927accd1ea74b58723ea0dc957c25153ee data/create/recipes/cutting/compat/deep_aether/roseroot_wood.json -869389fb72cfeffc81cb85ec0127257b8e56f78a data/create/recipes/cutting/compat/deep_aether/stripped_conberry_log.json -c745a929e3a3c872b29c4db814649ec962ad5ff6 data/create/recipes/cutting/compat/deep_aether/stripped_conberry_wood.json -ec2a9b2a488b99361c6a1c360ff27913733fd65f data/create/recipes/cutting/compat/deep_aether/stripped_cruderoot_log.json -3e6653c28160935ea2dd4a6a46256deec11f523c data/create/recipes/cutting/compat/deep_aether/stripped_cruderoot_wood.json -c3929865c526a94c39278f6c27537d4a19f17947 data/create/recipes/cutting/compat/deep_aether/stripped_roseroot_log.json -658f2fa81456f7978bf6bba885b12245a8b6d3da data/create/recipes/cutting/compat/deep_aether/stripped_roseroot_wood.json -10c0830c74cdfeddf3894c3b50d2529122b2a68a data/create/recipes/cutting/compat/deep_aether/stripped_sunroot_log.json -76ba4365d4520f795594c9613e2bb28bbd3d9574 data/create/recipes/cutting/compat/deep_aether/stripped_sunroot_wood.json -edb86380584c729f44574fd7e2beafad3336f457 data/create/recipes/cutting/compat/deep_aether/stripped_yagroot_log.json -3d54849f75866988fa1331784b954b5a0df44de0 data/create/recipes/cutting/compat/deep_aether/stripped_yagroot_wood.json -fc635cc869b8d9cde64009968bf7a6eecfded337 data/create/recipes/cutting/compat/deep_aether/sunroot_log.json -e2f701108a6e95be9f5aee5af66749930079a68c data/create/recipes/cutting/compat/deep_aether/sunroot_wood.json -099b1613ad1823348307461d1c66710c2982c1d5 data/create/recipes/cutting/compat/deep_aether/yagroot_log.json -bc3a8bab1260daf07bfb95b16ba34f1b407df470 data/create/recipes/cutting/compat/deep_aether/yagroot_wood.json 363da3d703f57ccac27632b573734a940799374b data/create/recipes/cutting/compat/ecologics/azalea_log.json 052c45bc088143aae8508af521a8f91a2c263459 data/create/recipes/cutting/compat/ecologics/azalea_wood.json 10b5a67570271c02e12d3d46e48c2ed8fe2fd2fb data/create/recipes/cutting/compat/ecologics/coconut_log.json @@ -1098,6 +1040,7 @@ fb6d54e0ee3c8831060a8573d16814217888ae0e data/create/recipes/pressing/compat/bet 77dbbdd01f36f1ede5018bc1feb3dff960988129 data/create/recipes/pressing/compat/betterendforge/pink_moss_path.json 200b0a7f459b4c5f5bd7d6fe46ad1959923b9cb0 data/create/recipes/pressing/compat/betterendforge/shadow_grass_path.json 8a53f6ea8dab59477d462eb929f7815f52b34095 data/create/recipes/pressing/compat/byg/lush_grass_path.json +bfed988091701a749d337c2d78e9fb820b8d9aa0 data/create/recipes/pressing/compat/deep_aether/golden_heights_dirt_path.json 4454d7dda6c2b5555227c5c147373df195adedb4 data/create/recipes/pressing/compat/environmental/mycelium_path.json ed3edcf493402051fcff435a5840295b218a078c data/create/recipes/pressing/compat/environmental/podzol_path.json 0afcbaa527a8063982caf9a541d1af43fe6becbb data/create/recipes/pressing/compat/infernalexp/crimson_nylium_path.json @@ -1106,7 +1049,6 @@ e049a1c6951c93a53122fc5adb27bee35ca62786 data/create/recipes/pressing/compat/inf 955613e743a216b10d54f94b89b23166adb49a40 data/create/recipes/pressing/compat/vampirism/cursed_earth_path.json 4ce4f4b71058d04be148cc2ad2318abe27a58359 data/create/recipes/pressing/copper_ingot.json 24bb356954866c69a279a9f0435035d8bafdddec data/create/recipes/pressing/cursed_earth_path_from_grass.json -bfed988091701a749d337c2d78e9fb820b8d9aa0 data/create/recipes/pressing/deep_aether_golden_dirt_path.json 744e1a66857f20a094ba02a3e3613210a815493e data/create/recipes/pressing/gold_ingot.json fb105ac920ce9dc0b883bfa40029b69709bceb38 data/create/recipes/pressing/iron_ingot.json daf5c0c9e3f13d2004d53c54f4c1c36ae098d1ae data/create/recipes/pressing/path.json diff --git a/src/generated/resources/data/create/recipes/cutting/compat/aether/golden_oak_log.json b/src/generated/resources/data/create/recipes/cutting/compat/aether/golden_oak_log.json deleted file mode 100644 index 63e4c15089..0000000000 --- a/src/generated/resources/data/create/recipes/cutting/compat/aether/golden_oak_log.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "type": "create:cutting", - "conditions": [ - { - "type": "forge:mod_loaded", - "modid": "aether" - } - ], - "ingredients": [ - { - "item": "aether:golden_oak_log" - } - ], - "processingTime": 50, - "results": [ - { - "item": "aether:stripped_skyroot_log" - } - ] -} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/cutting/compat/aether/golden_oak_wood.json b/src/generated/resources/data/create/recipes/cutting/compat/aether/golden_oak_wood.json deleted file mode 100644 index c31f2ff8b5..0000000000 --- a/src/generated/resources/data/create/recipes/cutting/compat/aether/golden_oak_wood.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "type": "create:cutting", - "conditions": [ - { - "type": "forge:mod_loaded", - "modid": "aether" - } - ], - "ingredients": [ - { - "item": "aether:golden_oak_wood" - } - ], - "processingTime": 50, - "results": [ - { - "item": "aether:stripped_skyroot_wood" - } - ] -} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/cutting/compat/aether/skyroot_log.json b/src/generated/resources/data/create/recipes/cutting/compat/aether/skyroot_log.json deleted file mode 100644 index 9afe2a0caf..0000000000 --- a/src/generated/resources/data/create/recipes/cutting/compat/aether/skyroot_log.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "type": "create:cutting", - "conditions": [ - { - "type": "forge:mod_loaded", - "modid": "aether" - } - ], - "ingredients": [ - { - "item": "aether:skyroot_log" - } - ], - "processingTime": 50, - "results": [ - { - "item": "aether:stripped_skyroot_log" - } - ] -} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/cutting/compat/aether/skyroot_wood.json b/src/generated/resources/data/create/recipes/cutting/compat/aether/skyroot_wood.json deleted file mode 100644 index 818637e80c..0000000000 --- a/src/generated/resources/data/create/recipes/cutting/compat/aether/skyroot_wood.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "type": "create:cutting", - "conditions": [ - { - "type": "forge:mod_loaded", - "modid": "aether" - } - ], - "ingredients": [ - { - "item": "aether:skyroot_wood" - } - ], - "processingTime": 50, - "results": [ - { - "item": "aether:stripped_skyroot_wood" - } - ] -} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/cutting/compat/aether/stripped_skyroot_log.json b/src/generated/resources/data/create/recipes/cutting/compat/aether/stripped_skyroot_log.json deleted file mode 100644 index 2201bf59de..0000000000 --- a/src/generated/resources/data/create/recipes/cutting/compat/aether/stripped_skyroot_log.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "create:cutting", - "conditions": [ - { - "type": "forge:mod_loaded", - "modid": "aether" - } - ], - "ingredients": [ - { - "item": "aether:stripped_skyroot_log" - } - ], - "processingTime": 50, - "results": [ - { - "count": 6, - "item": "aether:skyroot_planks" - } - ] -} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/cutting/compat/aether/stripped_skyroot_wood.json b/src/generated/resources/data/create/recipes/cutting/compat/aether/stripped_skyroot_wood.json deleted file mode 100644 index 38ba5ad9a3..0000000000 --- a/src/generated/resources/data/create/recipes/cutting/compat/aether/stripped_skyroot_wood.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "create:cutting", - "conditions": [ - { - "type": "forge:mod_loaded", - "modid": "aether" - } - ], - "ingredients": [ - { - "item": "aether:stripped_skyroot_wood" - } - ], - "processingTime": 50, - "results": [ - { - "count": 6, - "item": "aether:skyroot_planks" - } - ] -} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/cutting/compat/aether_redux/blightwillow_log.json b/src/generated/resources/data/create/recipes/cutting/compat/aether_redux/blightwillow_log.json deleted file mode 100644 index 5b76741c0d..0000000000 --- a/src/generated/resources/data/create/recipes/cutting/compat/aether_redux/blightwillow_log.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "type": "create:cutting", - "conditions": [ - { - "type": "forge:mod_loaded", - "modid": "aether_redux" - } - ], - "ingredients": [ - { - "item": "aether_redux:blightwillow_log" - } - ], - "processingTime": 50, - "results": [ - { - "item": "aether_redux:stripped_blightwillow_log" - } - ] -} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/cutting/compat/aether_redux/blightwillow_wood.json b/src/generated/resources/data/create/recipes/cutting/compat/aether_redux/blightwillow_wood.json deleted file mode 100644 index 46f59aa55c..0000000000 --- a/src/generated/resources/data/create/recipes/cutting/compat/aether_redux/blightwillow_wood.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "type": "create:cutting", - "conditions": [ - { - "type": "forge:mod_loaded", - "modid": "aether_redux" - } - ], - "ingredients": [ - { - "item": "aether_redux:blightwillow_wood" - } - ], - "processingTime": 50, - "results": [ - { - "item": "aether_redux:stripped_blightwillow_wood" - } - ] -} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/cutting/compat/aether_redux/cloudcap_hyphae.json b/src/generated/resources/data/create/recipes/cutting/compat/aether_redux/cloudcap_hyphae.json deleted file mode 100644 index 5dbb25ac38..0000000000 --- a/src/generated/resources/data/create/recipes/cutting/compat/aether_redux/cloudcap_hyphae.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "type": "create:cutting", - "conditions": [ - { - "type": "forge:mod_loaded", - "modid": "aether_redux" - } - ], - "ingredients": [ - { - "item": "aether_redux:cloudcap_hyphae" - } - ], - "processingTime": 50, - "results": [ - { - "item": "aether_redux:stripped_cloudcap_hyphae" - } - ] -} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/cutting/compat/aether_redux/cloudcap_stem.json b/src/generated/resources/data/create/recipes/cutting/compat/aether_redux/cloudcap_stem.json deleted file mode 100644 index 0f70227d6d..0000000000 --- a/src/generated/resources/data/create/recipes/cutting/compat/aether_redux/cloudcap_stem.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "type": "create:cutting", - "conditions": [ - { - "type": "forge:mod_loaded", - "modid": "aether_redux" - } - ], - "ingredients": [ - { - "item": "aether_redux:cloudcap_stem" - } - ], - "processingTime": 50, - "results": [ - { - "item": "aether_redux:stripped_cloudcap_stem" - } - ] -} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/cutting/compat/aether_redux/crystal_log.json b/src/generated/resources/data/create/recipes/cutting/compat/aether_redux/crystal_log.json deleted file mode 100644 index 8ebad145cd..0000000000 --- a/src/generated/resources/data/create/recipes/cutting/compat/aether_redux/crystal_log.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "type": "create:cutting", - "conditions": [ - { - "type": "forge:mod_loaded", - "modid": "aether_redux" - } - ], - "ingredients": [ - { - "item": "aether_redux:crystal_log" - } - ], - "processingTime": 50, - "results": [ - { - "item": "aether_redux:stripped_crystal_log" - } - ] -} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/cutting/compat/aether_redux/crystal_wood.json b/src/generated/resources/data/create/recipes/cutting/compat/aether_redux/crystal_wood.json deleted file mode 100644 index 230700390c..0000000000 --- a/src/generated/resources/data/create/recipes/cutting/compat/aether_redux/crystal_wood.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "type": "create:cutting", - "conditions": [ - { - "type": "forge:mod_loaded", - "modid": "aether_redux" - } - ], - "ingredients": [ - { - "item": "aether_redux:crystal_wood" - } - ], - "processingTime": 50, - "results": [ - { - "item": "aether_redux:stripped_crystal_wood" - } - ] -} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/cutting/compat/aether_redux/fieldsproot_log.json b/src/generated/resources/data/create/recipes/cutting/compat/aether_redux/fieldsproot_log.json deleted file mode 100644 index 259064ea8b..0000000000 --- a/src/generated/resources/data/create/recipes/cutting/compat/aether_redux/fieldsproot_log.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "type": "create:cutting", - "conditions": [ - { - "type": "forge:mod_loaded", - "modid": "aether_redux" - } - ], - "ingredients": [ - { - "item": "aether_redux:fieldsproot_log" - } - ], - "processingTime": 50, - "results": [ - { - "item": "aether_redux:stripped_fieldsproot_log" - } - ] -} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/cutting/compat/aether_redux/fieldsproot_wood.json b/src/generated/resources/data/create/recipes/cutting/compat/aether_redux/fieldsproot_wood.json deleted file mode 100644 index c57f8bcae7..0000000000 --- a/src/generated/resources/data/create/recipes/cutting/compat/aether_redux/fieldsproot_wood.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "type": "create:cutting", - "conditions": [ - { - "type": "forge:mod_loaded", - "modid": "aether_redux" - } - ], - "ingredients": [ - { - "item": "aether_redux:fieldsproot_wood" - } - ], - "processingTime": 50, - "results": [ - { - "item": "aether_redux:stripped_fieldsproot_wood" - } - ] -} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/cutting/compat/aether_redux/glacia_log.json b/src/generated/resources/data/create/recipes/cutting/compat/aether_redux/glacia_log.json deleted file mode 100644 index f1b1597a61..0000000000 --- a/src/generated/resources/data/create/recipes/cutting/compat/aether_redux/glacia_log.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "type": "create:cutting", - "conditions": [ - { - "type": "forge:mod_loaded", - "modid": "aether_redux" - } - ], - "ingredients": [ - { - "item": "aether_redux:glacia_log" - } - ], - "processingTime": 50, - "results": [ - { - "item": "aether_redux:stripped_glacia_log" - } - ] -} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/cutting/compat/aether_redux/glacia_wood.json b/src/generated/resources/data/create/recipes/cutting/compat/aether_redux/glacia_wood.json deleted file mode 100644 index d535099de7..0000000000 --- a/src/generated/resources/data/create/recipes/cutting/compat/aether_redux/glacia_wood.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "type": "create:cutting", - "conditions": [ - { - "type": "forge:mod_loaded", - "modid": "aether_redux" - } - ], - "ingredients": [ - { - "item": "aether_redux:glacia_wood" - } - ], - "processingTime": 50, - "results": [ - { - "item": "aether_redux:stripped_glacia_wood" - } - ] -} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/cutting/compat/aether_redux/jellyshroom_hyphae.json b/src/generated/resources/data/create/recipes/cutting/compat/aether_redux/jellyshroom_hyphae.json deleted file mode 100644 index 3a00d7ddb9..0000000000 --- a/src/generated/resources/data/create/recipes/cutting/compat/aether_redux/jellyshroom_hyphae.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "create:cutting", - "conditions": [ - { - "type": "forge:mod_loaded", - "modid": "aether_redux" - } - ], - "ingredients": [ - { - "item": "aether_redux:jellyshroom_hyphae" - } - ], - "processingTime": 50, - "results": [ - { - "count": 6, - "item": "aether_redux:jellyshroom_planks" - } - ] -} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/cutting/compat/aether_redux/jellyshroom_stem.json b/src/generated/resources/data/create/recipes/cutting/compat/aether_redux/jellyshroom_stem.json deleted file mode 100644 index 2795cdd2b2..0000000000 --- a/src/generated/resources/data/create/recipes/cutting/compat/aether_redux/jellyshroom_stem.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "create:cutting", - "conditions": [ - { - "type": "forge:mod_loaded", - "modid": "aether_redux" - } - ], - "ingredients": [ - { - "item": "aether_redux:jellyshroom_stem" - } - ], - "processingTime": 50, - "results": [ - { - "count": 6, - "item": "aether_redux:jellyshroom_planks" - } - ] -} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/cutting/compat/aether_redux/sporing_blightwillow_log.json b/src/generated/resources/data/create/recipes/cutting/compat/aether_redux/sporing_blightwillow_log.json deleted file mode 100644 index 5544118819..0000000000 --- a/src/generated/resources/data/create/recipes/cutting/compat/aether_redux/sporing_blightwillow_log.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "type": "create:cutting", - "conditions": [ - { - "type": "forge:mod_loaded", - "modid": "aether_redux" - } - ], - "ingredients": [ - { - "item": "aether_redux:sporing_blightwillow_log" - } - ], - "processingTime": 50, - "results": [ - { - "item": "aether_redux:stripped_blightwillow_log" - } - ] -} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/cutting/compat/aether_redux/sporing_blightwillow_wood.json b/src/generated/resources/data/create/recipes/cutting/compat/aether_redux/sporing_blightwillow_wood.json deleted file mode 100644 index 912fac7428..0000000000 --- a/src/generated/resources/data/create/recipes/cutting/compat/aether_redux/sporing_blightwillow_wood.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "type": "create:cutting", - "conditions": [ - { - "type": "forge:mod_loaded", - "modid": "aether_redux" - } - ], - "ingredients": [ - { - "item": "aether_redux:sporing_blightwillow_wood" - } - ], - "processingTime": 50, - "results": [ - { - "item": "aether_redux:stripped_blightwillow_wood" - } - ] -} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/cutting/compat/aether_redux/stripped_blightwillow_log.json b/src/generated/resources/data/create/recipes/cutting/compat/aether_redux/stripped_blightwillow_log.json deleted file mode 100644 index 82d1923090..0000000000 --- a/src/generated/resources/data/create/recipes/cutting/compat/aether_redux/stripped_blightwillow_log.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "create:cutting", - "conditions": [ - { - "type": "forge:mod_loaded", - "modid": "aether_redux" - } - ], - "ingredients": [ - { - "item": "aether_redux:stripped_blightwillow_log" - } - ], - "processingTime": 50, - "results": [ - { - "count": 6, - "item": "aether_redux:blightwillow_planks" - } - ] -} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/cutting/compat/aether_redux/stripped_blightwillow_wood.json b/src/generated/resources/data/create/recipes/cutting/compat/aether_redux/stripped_blightwillow_wood.json deleted file mode 100644 index b19b3a2662..0000000000 --- a/src/generated/resources/data/create/recipes/cutting/compat/aether_redux/stripped_blightwillow_wood.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "create:cutting", - "conditions": [ - { - "type": "forge:mod_loaded", - "modid": "aether_redux" - } - ], - "ingredients": [ - { - "item": "aether_redux:stripped_blightwillow_wood" - } - ], - "processingTime": 50, - "results": [ - { - "count": 6, - "item": "aether_redux:blightwillow_planks" - } - ] -} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/cutting/compat/aether_redux/stripped_cloudcap_hyphae.json b/src/generated/resources/data/create/recipes/cutting/compat/aether_redux/stripped_cloudcap_hyphae.json deleted file mode 100644 index 4bfcdeb21d..0000000000 --- a/src/generated/resources/data/create/recipes/cutting/compat/aether_redux/stripped_cloudcap_hyphae.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "create:cutting", - "conditions": [ - { - "type": "forge:mod_loaded", - "modid": "aether_redux" - } - ], - "ingredients": [ - { - "item": "aether_redux:stripped_cloudcap_hyphae" - } - ], - "processingTime": 50, - "results": [ - { - "count": 6, - "item": "aether_redux:cloudcap_planks" - } - ] -} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/cutting/compat/aether_redux/stripped_cloudcap_stem.json b/src/generated/resources/data/create/recipes/cutting/compat/aether_redux/stripped_cloudcap_stem.json deleted file mode 100644 index 1728829e93..0000000000 --- a/src/generated/resources/data/create/recipes/cutting/compat/aether_redux/stripped_cloudcap_stem.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "create:cutting", - "conditions": [ - { - "type": "forge:mod_loaded", - "modid": "aether_redux" - } - ], - "ingredients": [ - { - "item": "aether_redux:stripped_cloudcap_stem" - } - ], - "processingTime": 50, - "results": [ - { - "count": 6, - "item": "aether_redux:cloudcap_planks" - } - ] -} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/cutting/compat/aether_redux/stripped_crystal_log.json b/src/generated/resources/data/create/recipes/cutting/compat/aether_redux/stripped_crystal_log.json deleted file mode 100644 index 66c1714786..0000000000 --- a/src/generated/resources/data/create/recipes/cutting/compat/aether_redux/stripped_crystal_log.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "create:cutting", - "conditions": [ - { - "type": "forge:mod_loaded", - "modid": "aether_redux" - } - ], - "ingredients": [ - { - "item": "aether_redux:stripped_crystal_log" - } - ], - "processingTime": 50, - "results": [ - { - "count": 6, - "item": "aether_redux:crystal_planks" - } - ] -} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/cutting/compat/aether_redux/stripped_crystal_wood.json b/src/generated/resources/data/create/recipes/cutting/compat/aether_redux/stripped_crystal_wood.json deleted file mode 100644 index 69373edb72..0000000000 --- a/src/generated/resources/data/create/recipes/cutting/compat/aether_redux/stripped_crystal_wood.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "create:cutting", - "conditions": [ - { - "type": "forge:mod_loaded", - "modid": "aether_redux" - } - ], - "ingredients": [ - { - "item": "aether_redux:stripped_crystal_wood" - } - ], - "processingTime": 50, - "results": [ - { - "count": 6, - "item": "aether_redux:crystal_planks" - } - ] -} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/cutting/compat/aether_redux/stripped_fieldsproot_log.json b/src/generated/resources/data/create/recipes/cutting/compat/aether_redux/stripped_fieldsproot_log.json deleted file mode 100644 index d70d483f3e..0000000000 --- a/src/generated/resources/data/create/recipes/cutting/compat/aether_redux/stripped_fieldsproot_log.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "create:cutting", - "conditions": [ - { - "type": "forge:mod_loaded", - "modid": "aether_redux" - } - ], - "ingredients": [ - { - "item": "aether_redux:stripped_fieldsproot_log" - } - ], - "processingTime": 50, - "results": [ - { - "count": 6, - "item": "aether_redux:fieldsproot_planks" - } - ] -} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/cutting/compat/aether_redux/stripped_fieldsproot_wood.json b/src/generated/resources/data/create/recipes/cutting/compat/aether_redux/stripped_fieldsproot_wood.json deleted file mode 100644 index 24e7656645..0000000000 --- a/src/generated/resources/data/create/recipes/cutting/compat/aether_redux/stripped_fieldsproot_wood.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "create:cutting", - "conditions": [ - { - "type": "forge:mod_loaded", - "modid": "aether_redux" - } - ], - "ingredients": [ - { - "item": "aether_redux:stripped_fieldsproot_wood" - } - ], - "processingTime": 50, - "results": [ - { - "count": 6, - "item": "aether_redux:fieldsproot_planks" - } - ] -} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/cutting/compat/aether_redux/stripped_glacia_log.json b/src/generated/resources/data/create/recipes/cutting/compat/aether_redux/stripped_glacia_log.json deleted file mode 100644 index 3908b22bcd..0000000000 --- a/src/generated/resources/data/create/recipes/cutting/compat/aether_redux/stripped_glacia_log.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "create:cutting", - "conditions": [ - { - "type": "forge:mod_loaded", - "modid": "aether_redux" - } - ], - "ingredients": [ - { - "item": "aether_redux:stripped_glacia_log" - } - ], - "processingTime": 50, - "results": [ - { - "count": 6, - "item": "aether_redux:glacia_planks" - } - ] -} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/cutting/compat/aether_redux/stripped_glacia_wood.json b/src/generated/resources/data/create/recipes/cutting/compat/aether_redux/stripped_glacia_wood.json deleted file mode 100644 index f0a747aca3..0000000000 --- a/src/generated/resources/data/create/recipes/cutting/compat/aether_redux/stripped_glacia_wood.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "create:cutting", - "conditions": [ - { - "type": "forge:mod_loaded", - "modid": "aether_redux" - } - ], - "ingredients": [ - { - "item": "aether_redux:stripped_glacia_wood" - } - ], - "processingTime": 50, - "results": [ - { - "count": 6, - "item": "aether_redux:glacia_planks" - } - ] -} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/cutting/compat/ancient_aether/highsproot_log.json b/src/generated/resources/data/create/recipes/cutting/compat/ancient_aether/highsproot_log.json deleted file mode 100644 index 9f4376ee9c..0000000000 --- a/src/generated/resources/data/create/recipes/cutting/compat/ancient_aether/highsproot_log.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "type": "create:cutting", - "conditions": [ - { - "type": "forge:mod_loaded", - "modid": "ancient_aether" - } - ], - "ingredients": [ - { - "item": "ancient_aether:highsproot_log" - } - ], - "processingTime": 50, - "results": [ - { - "item": "ancient_aether:stripped_highsproot_log" - } - ] -} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/cutting/compat/ancient_aether/highsproot_wood.json b/src/generated/resources/data/create/recipes/cutting/compat/ancient_aether/highsproot_wood.json deleted file mode 100644 index 840ad00f73..0000000000 --- a/src/generated/resources/data/create/recipes/cutting/compat/ancient_aether/highsproot_wood.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "type": "create:cutting", - "conditions": [ - { - "type": "forge:mod_loaded", - "modid": "ancient_aether" - } - ], - "ingredients": [ - { - "item": "ancient_aether:highsproot_wood" - } - ], - "processingTime": 50, - "results": [ - { - "item": "ancient_aether:stripped_highsproot_wood" - } - ] -} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/cutting/compat/ancient_aether/sakura_log.json b/src/generated/resources/data/create/recipes/cutting/compat/ancient_aether/sakura_log.json deleted file mode 100644 index 4b36507712..0000000000 --- a/src/generated/resources/data/create/recipes/cutting/compat/ancient_aether/sakura_log.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "type": "create:cutting", - "conditions": [ - { - "type": "forge:mod_loaded", - "modid": "ancient_aether" - } - ], - "ingredients": [ - { - "item": "ancient_aether:sakura_log" - } - ], - "processingTime": 50, - "results": [ - { - "item": "ancient_aether:stripped_sakura_log" - } - ] -} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/cutting/compat/ancient_aether/sakura_wood.json b/src/generated/resources/data/create/recipes/cutting/compat/ancient_aether/sakura_wood.json deleted file mode 100644 index a114e53f82..0000000000 --- a/src/generated/resources/data/create/recipes/cutting/compat/ancient_aether/sakura_wood.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "type": "create:cutting", - "conditions": [ - { - "type": "forge:mod_loaded", - "modid": "ancient_aether" - } - ], - "ingredients": [ - { - "item": "ancient_aether:sakura_wood" - } - ], - "processingTime": 50, - "results": [ - { - "item": "ancient_aether:stripped_sakura_wood" - } - ] -} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/cutting/compat/ancient_aether/stripped_highsproot_log.json b/src/generated/resources/data/create/recipes/cutting/compat/ancient_aether/stripped_highsproot_log.json deleted file mode 100644 index d7cdb783b5..0000000000 --- a/src/generated/resources/data/create/recipes/cutting/compat/ancient_aether/stripped_highsproot_log.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "create:cutting", - "conditions": [ - { - "type": "forge:mod_loaded", - "modid": "ancient_aether" - } - ], - "ingredients": [ - { - "item": "ancient_aether:stripped_highsproot_log" - } - ], - "processingTime": 50, - "results": [ - { - "count": 6, - "item": "ancient_aether:highsproot_planks" - } - ] -} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/cutting/compat/ancient_aether/stripped_highsproot_wood.json b/src/generated/resources/data/create/recipes/cutting/compat/ancient_aether/stripped_highsproot_wood.json deleted file mode 100644 index dafcf8b46c..0000000000 --- a/src/generated/resources/data/create/recipes/cutting/compat/ancient_aether/stripped_highsproot_wood.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "create:cutting", - "conditions": [ - { - "type": "forge:mod_loaded", - "modid": "ancient_aether" - } - ], - "ingredients": [ - { - "item": "ancient_aether:stripped_highsproot_wood" - } - ], - "processingTime": 50, - "results": [ - { - "count": 6, - "item": "ancient_aether:highsproot_planks" - } - ] -} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/cutting/compat/ancient_aether/stripped_sakura_log.json b/src/generated/resources/data/create/recipes/cutting/compat/ancient_aether/stripped_sakura_log.json deleted file mode 100644 index 28293ce4a1..0000000000 --- a/src/generated/resources/data/create/recipes/cutting/compat/ancient_aether/stripped_sakura_log.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "create:cutting", - "conditions": [ - { - "type": "forge:mod_loaded", - "modid": "ancient_aether" - } - ], - "ingredients": [ - { - "item": "ancient_aether:stripped_sakura_log" - } - ], - "processingTime": 50, - "results": [ - { - "count": 6, - "item": "ancient_aether:sakura_planks" - } - ] -} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/cutting/compat/ancient_aether/stripped_sakura_wood.json b/src/generated/resources/data/create/recipes/cutting/compat/ancient_aether/stripped_sakura_wood.json deleted file mode 100644 index b9c6054b31..0000000000 --- a/src/generated/resources/data/create/recipes/cutting/compat/ancient_aether/stripped_sakura_wood.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "create:cutting", - "conditions": [ - { - "type": "forge:mod_loaded", - "modid": "ancient_aether" - } - ], - "ingredients": [ - { - "item": "ancient_aether:stripped_sakura_wood" - } - ], - "processingTime": 50, - "results": [ - { - "count": 6, - "item": "ancient_aether:sakura_planks" - } - ] -} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/cutting/compat/deep_aether/conberry_log.json b/src/generated/resources/data/create/recipes/cutting/compat/deep_aether/conberry_log.json deleted file mode 100644 index b5a0e544c4..0000000000 --- a/src/generated/resources/data/create/recipes/cutting/compat/deep_aether/conberry_log.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "type": "create:cutting", - "conditions": [ - { - "type": "forge:mod_loaded", - "modid": "deep_aether" - } - ], - "ingredients": [ - { - "item": "deep_aether:conberry_log" - } - ], - "processingTime": 50, - "results": [ - { - "item": "deep_aether:stripped_conberry_log" - } - ] -} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/cutting/compat/deep_aether/conberry_wood.json b/src/generated/resources/data/create/recipes/cutting/compat/deep_aether/conberry_wood.json deleted file mode 100644 index f5e06ba5c1..0000000000 --- a/src/generated/resources/data/create/recipes/cutting/compat/deep_aether/conberry_wood.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "type": "create:cutting", - "conditions": [ - { - "type": "forge:mod_loaded", - "modid": "deep_aether" - } - ], - "ingredients": [ - { - "item": "deep_aether:conberry_wood" - } - ], - "processingTime": 50, - "results": [ - { - "item": "deep_aether:stripped_conberry_wood" - } - ] -} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/cutting/compat/deep_aether/cruderoot_log.json b/src/generated/resources/data/create/recipes/cutting/compat/deep_aether/cruderoot_log.json deleted file mode 100644 index 6bc47d7369..0000000000 --- a/src/generated/resources/data/create/recipes/cutting/compat/deep_aether/cruderoot_log.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "type": "create:cutting", - "conditions": [ - { - "type": "forge:mod_loaded", - "modid": "deep_aether" - } - ], - "ingredients": [ - { - "item": "deep_aether:cruderoot_log" - } - ], - "processingTime": 50, - "results": [ - { - "item": "deep_aether:stripped_cruderoot_log" - } - ] -} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/cutting/compat/deep_aether/cruderoot_wood.json b/src/generated/resources/data/create/recipes/cutting/compat/deep_aether/cruderoot_wood.json deleted file mode 100644 index fba9eeadf0..0000000000 --- a/src/generated/resources/data/create/recipes/cutting/compat/deep_aether/cruderoot_wood.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "type": "create:cutting", - "conditions": [ - { - "type": "forge:mod_loaded", - "modid": "deep_aether" - } - ], - "ingredients": [ - { - "item": "deep_aether:cruderoot_wood" - } - ], - "processingTime": 50, - "results": [ - { - "item": "deep_aether:stripped_cruderoot_wood" - } - ] -} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/cutting/compat/deep_aether/roseroot_log.json b/src/generated/resources/data/create/recipes/cutting/compat/deep_aether/roseroot_log.json deleted file mode 100644 index b8e6500e27..0000000000 --- a/src/generated/resources/data/create/recipes/cutting/compat/deep_aether/roseroot_log.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "type": "create:cutting", - "conditions": [ - { - "type": "forge:mod_loaded", - "modid": "deep_aether" - } - ], - "ingredients": [ - { - "item": "deep_aether:roseroot_log" - } - ], - "processingTime": 50, - "results": [ - { - "item": "deep_aether:stripped_roseroot_log" - } - ] -} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/cutting/compat/deep_aether/roseroot_wood.json b/src/generated/resources/data/create/recipes/cutting/compat/deep_aether/roseroot_wood.json deleted file mode 100644 index 048d639a17..0000000000 --- a/src/generated/resources/data/create/recipes/cutting/compat/deep_aether/roseroot_wood.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "type": "create:cutting", - "conditions": [ - { - "type": "forge:mod_loaded", - "modid": "deep_aether" - } - ], - "ingredients": [ - { - "item": "deep_aether:roseroot_wood" - } - ], - "processingTime": 50, - "results": [ - { - "item": "deep_aether:stripped_roseroot_wood" - } - ] -} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/cutting/compat/deep_aether/stripped_conberry_log.json b/src/generated/resources/data/create/recipes/cutting/compat/deep_aether/stripped_conberry_log.json deleted file mode 100644 index 23cdfae750..0000000000 --- a/src/generated/resources/data/create/recipes/cutting/compat/deep_aether/stripped_conberry_log.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "create:cutting", - "conditions": [ - { - "type": "forge:mod_loaded", - "modid": "deep_aether" - } - ], - "ingredients": [ - { - "item": "deep_aether:stripped_conberry_log" - } - ], - "processingTime": 50, - "results": [ - { - "count": 6, - "item": "deep_aether:conberry_planks" - } - ] -} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/cutting/compat/deep_aether/stripped_conberry_wood.json b/src/generated/resources/data/create/recipes/cutting/compat/deep_aether/stripped_conberry_wood.json deleted file mode 100644 index 0bdae78dad..0000000000 --- a/src/generated/resources/data/create/recipes/cutting/compat/deep_aether/stripped_conberry_wood.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "create:cutting", - "conditions": [ - { - "type": "forge:mod_loaded", - "modid": "deep_aether" - } - ], - "ingredients": [ - { - "item": "deep_aether:stripped_conberry_wood" - } - ], - "processingTime": 50, - "results": [ - { - "count": 6, - "item": "deep_aether:conberry_planks" - } - ] -} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/cutting/compat/deep_aether/stripped_cruderoot_log.json b/src/generated/resources/data/create/recipes/cutting/compat/deep_aether/stripped_cruderoot_log.json deleted file mode 100644 index c9501d7a1a..0000000000 --- a/src/generated/resources/data/create/recipes/cutting/compat/deep_aether/stripped_cruderoot_log.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "create:cutting", - "conditions": [ - { - "type": "forge:mod_loaded", - "modid": "deep_aether" - } - ], - "ingredients": [ - { - "item": "deep_aether:stripped_cruderoot_log" - } - ], - "processingTime": 50, - "results": [ - { - "count": 6, - "item": "deep_aether:cruderoot_planks" - } - ] -} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/cutting/compat/deep_aether/stripped_cruderoot_wood.json b/src/generated/resources/data/create/recipes/cutting/compat/deep_aether/stripped_cruderoot_wood.json deleted file mode 100644 index ca1fb349aa..0000000000 --- a/src/generated/resources/data/create/recipes/cutting/compat/deep_aether/stripped_cruderoot_wood.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "create:cutting", - "conditions": [ - { - "type": "forge:mod_loaded", - "modid": "deep_aether" - } - ], - "ingredients": [ - { - "item": "deep_aether:stripped_cruderoot_wood" - } - ], - "processingTime": 50, - "results": [ - { - "count": 6, - "item": "deep_aether:cruderoot_planks" - } - ] -} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/cutting/compat/deep_aether/stripped_roseroot_log.json b/src/generated/resources/data/create/recipes/cutting/compat/deep_aether/stripped_roseroot_log.json deleted file mode 100644 index b9e657871a..0000000000 --- a/src/generated/resources/data/create/recipes/cutting/compat/deep_aether/stripped_roseroot_log.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "create:cutting", - "conditions": [ - { - "type": "forge:mod_loaded", - "modid": "deep_aether" - } - ], - "ingredients": [ - { - "item": "deep_aether:stripped_roseroot_log" - } - ], - "processingTime": 50, - "results": [ - { - "count": 6, - "item": "deep_aether:roseroot_planks" - } - ] -} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/cutting/compat/deep_aether/stripped_roseroot_wood.json b/src/generated/resources/data/create/recipes/cutting/compat/deep_aether/stripped_roseroot_wood.json deleted file mode 100644 index 0b7ea5b308..0000000000 --- a/src/generated/resources/data/create/recipes/cutting/compat/deep_aether/stripped_roseroot_wood.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "create:cutting", - "conditions": [ - { - "type": "forge:mod_loaded", - "modid": "deep_aether" - } - ], - "ingredients": [ - { - "item": "deep_aether:stripped_roseroot_wood" - } - ], - "processingTime": 50, - "results": [ - { - "count": 6, - "item": "deep_aether:roseroot_planks" - } - ] -} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/cutting/compat/deep_aether/stripped_sunroot_log.json b/src/generated/resources/data/create/recipes/cutting/compat/deep_aether/stripped_sunroot_log.json deleted file mode 100644 index 81dc24b195..0000000000 --- a/src/generated/resources/data/create/recipes/cutting/compat/deep_aether/stripped_sunroot_log.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "create:cutting", - "conditions": [ - { - "type": "forge:mod_loaded", - "modid": "deep_aether" - } - ], - "ingredients": [ - { - "item": "deep_aether:stripped_sunroot_log" - } - ], - "processingTime": 50, - "results": [ - { - "count": 6, - "item": "deep_aether:sunroot_planks" - } - ] -} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/cutting/compat/deep_aether/stripped_sunroot_wood.json b/src/generated/resources/data/create/recipes/cutting/compat/deep_aether/stripped_sunroot_wood.json deleted file mode 100644 index fd73df2330..0000000000 --- a/src/generated/resources/data/create/recipes/cutting/compat/deep_aether/stripped_sunroot_wood.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "create:cutting", - "conditions": [ - { - "type": "forge:mod_loaded", - "modid": "deep_aether" - } - ], - "ingredients": [ - { - "item": "deep_aether:stripped_sunroot_wood" - } - ], - "processingTime": 50, - "results": [ - { - "count": 6, - "item": "deep_aether:sunroot_planks" - } - ] -} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/cutting/compat/deep_aether/stripped_yagroot_log.json b/src/generated/resources/data/create/recipes/cutting/compat/deep_aether/stripped_yagroot_log.json deleted file mode 100644 index f208ac7825..0000000000 --- a/src/generated/resources/data/create/recipes/cutting/compat/deep_aether/stripped_yagroot_log.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "create:cutting", - "conditions": [ - { - "type": "forge:mod_loaded", - "modid": "deep_aether" - } - ], - "ingredients": [ - { - "item": "deep_aether:stripped_yagroot_log" - } - ], - "processingTime": 50, - "results": [ - { - "count": 6, - "item": "deep_aether:yagroot_planks" - } - ] -} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/cutting/compat/deep_aether/stripped_yagroot_wood.json b/src/generated/resources/data/create/recipes/cutting/compat/deep_aether/stripped_yagroot_wood.json deleted file mode 100644 index ae586e71eb..0000000000 --- a/src/generated/resources/data/create/recipes/cutting/compat/deep_aether/stripped_yagroot_wood.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "create:cutting", - "conditions": [ - { - "type": "forge:mod_loaded", - "modid": "deep_aether" - } - ], - "ingredients": [ - { - "item": "deep_aether:stripped_yagroot_wood" - } - ], - "processingTime": 50, - "results": [ - { - "count": 6, - "item": "deep_aether:yagroot_planks" - } - ] -} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/cutting/compat/deep_aether/sunroot_log.json b/src/generated/resources/data/create/recipes/cutting/compat/deep_aether/sunroot_log.json deleted file mode 100644 index dc26af99f7..0000000000 --- a/src/generated/resources/data/create/recipes/cutting/compat/deep_aether/sunroot_log.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "type": "create:cutting", - "conditions": [ - { - "type": "forge:mod_loaded", - "modid": "deep_aether" - } - ], - "ingredients": [ - { - "item": "deep_aether:sunroot_log" - } - ], - "processingTime": 50, - "results": [ - { - "item": "deep_aether:stripped_sunroot_log" - } - ] -} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/cutting/compat/deep_aether/sunroot_wood.json b/src/generated/resources/data/create/recipes/cutting/compat/deep_aether/sunroot_wood.json deleted file mode 100644 index c0a864898a..0000000000 --- a/src/generated/resources/data/create/recipes/cutting/compat/deep_aether/sunroot_wood.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "type": "create:cutting", - "conditions": [ - { - "type": "forge:mod_loaded", - "modid": "deep_aether" - } - ], - "ingredients": [ - { - "item": "deep_aether:sunroot_wood" - } - ], - "processingTime": 50, - "results": [ - { - "item": "deep_aether:stripped_sunroot_wood" - } - ] -} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/cutting/compat/deep_aether/yagroot_log.json b/src/generated/resources/data/create/recipes/cutting/compat/deep_aether/yagroot_log.json deleted file mode 100644 index 819cbac182..0000000000 --- a/src/generated/resources/data/create/recipes/cutting/compat/deep_aether/yagroot_log.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "type": "create:cutting", - "conditions": [ - { - "type": "forge:mod_loaded", - "modid": "deep_aether" - } - ], - "ingredients": [ - { - "item": "deep_aether:yagroot_log" - } - ], - "processingTime": 50, - "results": [ - { - "item": "deep_aether:stripped_yagroot_log" - } - ] -} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/cutting/compat/deep_aether/yagroot_wood.json b/src/generated/resources/data/create/recipes/cutting/compat/deep_aether/yagroot_wood.json deleted file mode 100644 index 5a6632126e..0000000000 --- a/src/generated/resources/data/create/recipes/cutting/compat/deep_aether/yagroot_wood.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "type": "create:cutting", - "conditions": [ - { - "type": "forge:mod_loaded", - "modid": "deep_aether" - } - ], - "ingredients": [ - { - "item": "deep_aether:yagroot_wood" - } - ], - "processingTime": 50, - "results": [ - { - "item": "deep_aether:stripped_yagroot_wood" - } - ] -} \ No newline at end of file diff --git a/src/generated/resources/data/create/recipes/pressing/deep_aether_golden_dirt_path.json b/src/generated/resources/data/create/recipes/pressing/compat/deep_aether/golden_heights_dirt_path.json similarity index 100% rename from src/generated/resources/data/create/recipes/pressing/deep_aether_golden_dirt_path.json rename to src/generated/resources/data/create/recipes/pressing/compat/deep_aether/golden_heights_dirt_path.json