From f471f4f1fa62d6d2dd900c6e6eec151eb42524e1 Mon Sep 17 00:00:00 2001 From: Flanks255 <32142731+Flanks255@users.noreply.github.com> Date: Tue, 12 Mar 2024 17:15:56 -0500 Subject: [PATCH] Added Ancient debris to mining lens. --- .../.cache/fa43e5ef6ac83dd009de17d3b434e29660c4c3fc | 4 ++-- .../recipes/mininglens/nether_ancient_debris.json | 10 ++++++++++ .../actuallyadditions/data/MiningLensGenerator.java | 1 + 3 files changed, 13 insertions(+), 2 deletions(-) create mode 100644 src/generated/resources/data/actuallyadditions/recipes/mininglens/nether_ancient_debris.json diff --git a/src/generated/resources/.cache/fa43e5ef6ac83dd009de17d3b434e29660c4c3fc b/src/generated/resources/.cache/fa43e5ef6ac83dd009de17d3b434e29660c4c3fc index fa406c62b..045b73786 100644 --- a/src/generated/resources/.cache/fa43e5ef6ac83dd009de17d3b434e29660c4c3fc +++ b/src/generated/resources/.cache/fa43e5ef6ac83dd009de17d3b434e29660c4c3fc @@ -1,7 +1,7 @@ -// 1.20.4 2024-03-12T14:20:16.9017388 Mining Lens Recipes +// 1.20.4 2024-03-12T17:06:32.3158961 Mining Lens Recipes +7341f498818439ac0a9272a1beaa8f19389012ef data/actuallyadditions/recipes/mininglens/nether_ancient_debris.json 411b455c637359f1f46df6fced8cd7558436e938 data/actuallyadditions/recipes/mininglens/nether_nether_gold_ore.json 7227ee2a53f520facb7fe8f7b34a1a74c9a49e85 data/actuallyadditions/recipes/mininglens/nether_nether_quartz_ore.json -842372f2415c0beefbb116d7064cf2fbab8459c1 data/actuallyadditions/recipes/mininglens/stone_ancient_debris.json de47fcc5b2acc4f0511e95de63b9b084a2dfbaad data/actuallyadditions/recipes/mininglens/stone_black_quartz_ore.json 550a0fe3577fcdaf0e1af1b2e3a518256992e00b data/actuallyadditions/recipes/mininglens/stone_coal_ore.json 869a51e0fc919b7a4577bb7c466ca07a6ae0370b data/actuallyadditions/recipes/mininglens/stone_diamond_ore.json diff --git a/src/generated/resources/data/actuallyadditions/recipes/mininglens/nether_ancient_debris.json b/src/generated/resources/data/actuallyadditions/recipes/mininglens/nether_ancient_debris.json new file mode 100644 index 000000000..4eb673f92 --- /dev/null +++ b/src/generated/resources/data/actuallyadditions/recipes/mininglens/nether_ancient_debris.json @@ -0,0 +1,10 @@ +{ + "type": "actuallyadditions:mining_lens", + "ingredient": { + "tag": "forge:netherrack" + }, + "result": { + "item": "minecraft:ancient_debris" + }, + "weight": 1 +} \ No newline at end of file diff --git a/src/main/java/de/ellpeck/actuallyadditions/data/MiningLensGenerator.java b/src/main/java/de/ellpeck/actuallyadditions/data/MiningLensGenerator.java index 4d0be3d89..ebf0d7fb8 100644 --- a/src/main/java/de/ellpeck/actuallyadditions/data/MiningLensGenerator.java +++ b/src/main/java/de/ellpeck/actuallyadditions/data/MiningLensGenerator.java @@ -66,5 +66,6 @@ public class MiningLensGenerator extends RecipeProvider { buildStoneOre(consumer, 30, Items.EMERALD_ORE); buildNetherOre(consumer, 3000, Items.NETHER_QUARTZ_ORE); buildStoneOre(consumer, 3000, ActuallyBlocks.BLACK_QUARTZ_ORE.getItem()); + buildNetherOre(consumer, 1, Items.ANCIENT_DEBRIS); } }