diff --git a/Xplat/src/generated/resources/.cache/8482c265eb392e1fe5c3863ee4f62f310932c269 b/Xplat/src/generated/resources/.cache/8482c265eb392e1fe5c3863ee4f62f310932c269 index f35b2ac7ec..461a470919 100644 --- a/Xplat/src/generated/resources/.cache/8482c265eb392e1fe5c3863ee4f62f310932c269 +++ b/Xplat/src/generated/resources/.cache/8482c265eb392e1fe5c3863ee4f62f310932c269 @@ -22,6 +22,7 @@ a66f95466540197c1ee750aa35d40ff71a0bd4c5 data/botania/recipes/mana_infusion/bubb 9ed4f8d0c5fd34ef0591d130843c7b05c8e5c970 data/botania/recipes/mana_infusion/cactus_to_slime.json ceca0dae725cff1bca93e23fd1e8dc8baf9dd4fe data/botania/recipes/mana_infusion/calcite_to_deepslate.json 765e2e8c800b04600875d44bbc25052789ee1808 data/botania/recipes/mana_infusion/carrot_to_beetroot_seeds.json +fd176a9200155eb163c73ecdc2e6fdf37868c771 data/botania/recipes/mana_infusion/cherry_leaves_dupe.json 3e679f2e08e1285a4e14b8629c718abfb25ba3dc data/botania/recipes/mana_infusion/cherry_log_to_oak_log.json ebda178cf528f07d1f1b7323089dece5899b3d04 data/botania/recipes/mana_infusion/cherry_sapling_to_oak_sapling.json ef5a86af7a3ea575f7498a0b86a3ab8e242860e2 data/botania/recipes/mana_infusion/chiseled_stone_bricks.json @@ -81,6 +82,7 @@ b683dc237fdf556cc7a460ae26a6cf109fff3fd9 data/botania/recipes/mana_infusion/mana 33943091f6e0b653c7f9bb866608bb6def8119b4 data/botania/recipes/mana_infusion/mana_string.json dcc6ce205e673dcc8f5f5901ae0f241d81da522e data/botania/recipes/mana_infusion/manasteel.json e53a677d92a5f9f94dbeed07efc889390f175908 data/botania/recipes/mana_infusion/manasteel_block.json +79201ea20f0f506cb81ce432b26be51dd3cb2b58 data/botania/recipes/mana_infusion/mangrove_leaves_dupe.json fe6ed49395efe5702f46a9ff0ae080b44e34dd03 data/botania/recipes/mana_infusion/mangrove_log_to_cherry_log.json b5a8b4ef4efd1aa24a8e01efc9e19f8bb3d3a7b1 data/botania/recipes/mana_infusion/mangrove_propagule_to_cherry_sapling.json 487b061a3f9ae9933279ae2583f8c39e44dafed3 data/botania/recipes/mana_infusion/marimorphosis_chibi.json diff --git a/Xplat/src/generated/resources/data/botania/recipes/mana_infusion/cherry_leaves_dupe.json b/Xplat/src/generated/resources/data/botania/recipes/mana_infusion/cherry_leaves_dupe.json new file mode 100644 index 0000000000..427a96d9dc --- /dev/null +++ b/Xplat/src/generated/resources/data/botania/recipes/mana_infusion/cherry_leaves_dupe.json @@ -0,0 +1,15 @@ +{ + "type": "botania:mana_infusion", + "catalyst": { + "type": "block", + "block": "botania:conjuration_catalyst" + }, + "input": { + "item": "minecraft:cherry_leaves" + }, + "mana": 2000, + "output": { + "count": 2, + "item": "minecraft:cherry_leaves" + } +} \ No newline at end of file diff --git a/Xplat/src/generated/resources/data/botania/recipes/mana_infusion/mangrove_leaves_dupe.json b/Xplat/src/generated/resources/data/botania/recipes/mana_infusion/mangrove_leaves_dupe.json new file mode 100644 index 0000000000..6d4f108480 --- /dev/null +++ b/Xplat/src/generated/resources/data/botania/recipes/mana_infusion/mangrove_leaves_dupe.json @@ -0,0 +1,15 @@ +{ + "type": "botania:mana_infusion", + "catalyst": { + "type": "block", + "block": "botania:conjuration_catalyst" + }, + "input": { + "item": "minecraft:mangrove_leaves" + }, + "mana": 2000, + "output": { + "count": 2, + "item": "minecraft:mangrove_leaves" + } +} \ No newline at end of file diff --git a/Xplat/src/main/java/vazkii/botania/data/recipes/ManaInfusionProvider.java b/Xplat/src/main/java/vazkii/botania/data/recipes/ManaInfusionProvider.java index 2a7fe48775..c4ffd4ee98 100644 --- a/Xplat/src/main/java/vazkii/botania/data/recipes/ManaInfusionProvider.java +++ b/Xplat/src/main/java/vazkii/botania/data/recipes/ManaInfusionProvider.java @@ -175,6 +175,8 @@ public void buildRecipes(Consumer con consumer.accept(FinishedRecipe.conjuration(id("dark_oak_leaves_dupe"), new ItemStack(Blocks.DARK_OAK_LEAVES, 2), ingr(Blocks.DARK_OAK_LEAVES), 2000)); consumer.accept(FinishedRecipe.conjuration(id("azalea_leaves_dupe"), new ItemStack(Blocks.AZALEA_LEAVES, 2), ingr(Blocks.AZALEA_LEAVES), 2000)); consumer.accept(FinishedRecipe.conjuration(id("flowering_azalea_leaves_dupe"), new ItemStack(Blocks.FLOWERING_AZALEA_LEAVES, 2), ingr(Blocks.FLOWERING_AZALEA_LEAVES), 2000)); + consumer.accept(FinishedRecipe.conjuration(id("mangrove_leaves_dupe"), new ItemStack(Blocks.MANGROVE_LEAVES, 2), ingr(Blocks.MANGROVE_LEAVES), 2000)); + consumer.accept(FinishedRecipe.conjuration(id("cherry_leaves_dupe"), new ItemStack(Blocks.CHERRY_LEAVES, 2), ingr(Blocks.CHERRY_LEAVES), 2000)); consumer.accept(FinishedRecipe.conjuration(id("grass"), new ItemStack(Blocks.GRASS, 2), ingr(Blocks.GRASS), 800)); }