Added Copper ores to mining lens.

Added Xycraft ores to mining lens.
This commit is contained in:
Flanks255 2024-03-16 12:37:17 -05:00
parent db3a550070
commit 6005bee8d2
8 changed files with 99 additions and 1 deletions

View file

@ -2,7 +2,7 @@ org.gradle.jvmargs=-Xmx3G
org.gradle.daemon=false
# Actually Additions
mod_version=1.2.9
mod_version=1.2.10
# Forge
game_version=1.20.4

View file

@ -65,6 +65,7 @@ public class MiningLensGenerator extends RecipeProvider {
private void buildMiningLens(RecipeOutput consumer) {
buildStoneOre(consumer, 5000, Items.COAL_ORE);
buildStoneOre(consumer, 5000, Items.COPPER_ORE);
buildStoneOre(consumer, 3000, Items.IRON_ORE);
buildStoneOre(consumer, 500, Items.GOLD_ORE);
buildNetherOre(consumer, 500, Items.NETHER_GOLD_ORE);
@ -78,6 +79,7 @@ public class MiningLensGenerator extends RecipeProvider {
buildDeepSlateOre(consumer, 2000, Items.DEEPSLATE_COAL_ORE);
buildDeepSlateOre(consumer, 3000, Items.DEEPSLATE_IRON_ORE);
buildDeepSlateOre(consumer, 3000, Items.DEEPSLATE_COPPER_ORE);
buildDeepSlateOre(consumer, 500, Items.DEEPSLATE_GOLD_ORE);
buildDeepSlateOre(consumer, 50, Items.DEEPSLATE_DIAMOND_ORE);
buildDeepSlateOre(consumer, 250, Items.DEEPSLATE_LAPIS_ORE);

View file

@ -0,0 +1,16 @@
{
"neoforge:conditions": [
{
"type": "neoforge:mod_loaded",
"modid": "xycraft_world"
}
],
"type": "actuallyadditions:mining_lens",
"ingredient": {
"tag": "forge:stone"
},
"result": {
"item": "xycraft_world:aluminum_ore_stone"
},
"weight": 250
}

View file

@ -0,0 +1,16 @@
{
"neoforge:conditions": [
{
"type": "neoforge:mod_loaded",
"modid": "xycraft_world"
}
],
"type": "actuallyadditions:mining_lens",
"ingredient": {
"tag": "forge:stone"
},
"result": {
"item": "xycraft_world:xychorium_ore_stone_blue"
},
"weight": 300
}

View file

@ -0,0 +1,16 @@
{
"neoforge:conditions": [
{
"type": "neoforge:mod_loaded",
"modid": "xycraft_world"
}
],
"type": "actuallyadditions:mining_lens",
"ingredient": {
"tag": "forge:stone"
},
"result": {
"item": "xycraft_world:xychorium_ore_stone_dark"
},
"weight": 300
}

View file

@ -0,0 +1,16 @@
{
"neoforge:conditions": [
{
"type": "neoforge:mod_loaded",
"modid": "xycraft_world"
}
],
"type": "actuallyadditions:mining_lens",
"ingredient": {
"tag": "forge:stone"
},
"result": {
"item": "xycraft_world:xychorium_ore_stone_green"
},
"weight": 300
}

View file

@ -0,0 +1,16 @@
{
"neoforge:conditions": [
{
"type": "neoforge:mod_loaded",
"modid": "xycraft_world"
}
],
"type": "actuallyadditions:mining_lens",
"ingredient": {
"tag": "forge:stone"
},
"result": {
"item": "xycraft_world:xychorium_ore_stone_light"
},
"weight": 300
}

View file

@ -0,0 +1,16 @@
{
"neoforge:conditions": [
{
"type": "neoforge:mod_loaded",
"modid": "xycraft_world"
}
],
"type": "actuallyadditions:mining_lens",
"ingredient": {
"tag": "forge:stone"
},
"result": {
"item": "xycraft_world:xychorium_ore_stone_red"
},
"weight": 300
}