mirror of
https://github.com/Ellpeck/ActuallyAdditions.git
synced 2024-11-22 15:18:34 +01:00
Added Ancient debris to mining lens.
This commit is contained in:
parent
f76db7ba65
commit
f471f4f1fa
3 changed files with 13 additions and 2 deletions
|
@ -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
|
411b455c637359f1f46df6fced8cd7558436e938 data/actuallyadditions/recipes/mininglens/nether_nether_gold_ore.json
|
||||||
7227ee2a53f520facb7fe8f7b34a1a74c9a49e85 data/actuallyadditions/recipes/mininglens/nether_nether_quartz_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
|
de47fcc5b2acc4f0511e95de63b9b084a2dfbaad data/actuallyadditions/recipes/mininglens/stone_black_quartz_ore.json
|
||||||
550a0fe3577fcdaf0e1af1b2e3a518256992e00b data/actuallyadditions/recipes/mininglens/stone_coal_ore.json
|
550a0fe3577fcdaf0e1af1b2e3a518256992e00b data/actuallyadditions/recipes/mininglens/stone_coal_ore.json
|
||||||
869a51e0fc919b7a4577bb7c466ca07a6ae0370b data/actuallyadditions/recipes/mininglens/stone_diamond_ore.json
|
869a51e0fc919b7a4577bb7c466ca07a6ae0370b data/actuallyadditions/recipes/mininglens/stone_diamond_ore.json
|
||||||
|
|
|
@ -0,0 +1,10 @@
|
||||||
|
{
|
||||||
|
"type": "actuallyadditions:mining_lens",
|
||||||
|
"ingredient": {
|
||||||
|
"tag": "forge:netherrack"
|
||||||
|
},
|
||||||
|
"result": {
|
||||||
|
"item": "minecraft:ancient_debris"
|
||||||
|
},
|
||||||
|
"weight": 1
|
||||||
|
}
|
|
@ -66,5 +66,6 @@ public class MiningLensGenerator extends RecipeProvider {
|
||||||
buildStoneOre(consumer, 30, Items.EMERALD_ORE);
|
buildStoneOre(consumer, 30, Items.EMERALD_ORE);
|
||||||
buildNetherOre(consumer, 3000, Items.NETHER_QUARTZ_ORE);
|
buildNetherOre(consumer, 3000, Items.NETHER_QUARTZ_ORE);
|
||||||
buildStoneOre(consumer, 3000, ActuallyBlocks.BLACK_QUARTZ_ORE.getItem());
|
buildStoneOre(consumer, 3000, ActuallyBlocks.BLACK_QUARTZ_ORE.getItem());
|
||||||
|
buildNetherOre(consumer, 1, Items.ANCIENT_DEBRIS);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue