mirror of
https://github.com/Ellpeck/ActuallyAdditions.git
synced 2024-11-24 08:08:34 +01:00
Added Copper ores to mining lens.
Added Xycraft ores to mining lens.
This commit is contained in:
parent
db3a550070
commit
6005bee8d2
8 changed files with 99 additions and 1 deletions
|
@ -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
|
||||
|
|
|
@ -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);
|
||||
|
|
|
@ -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
|
||||
}
|
|
@ -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
|
||||
}
|
|
@ -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
|
||||
}
|
|
@ -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
|
||||
}
|
|
@ -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
|
||||
}
|
|
@ -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
|
||||
}
|
Loading…
Reference in a new issue