Skip to content

Commit

Permalink
feat: adjust gem crushing balance to be more in line with metals valu…
Browse files Browse the repository at this point in the history
…e-wise
  • Loading branch information
klikli-dev committed Oct 30, 2023
1 parent cca705e commit 53b3eff
Show file tree
Hide file tree
Showing 18 changed files with 18 additions and 18 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"tag": "forge:ores/amber"
},
"result": {
"count": 2,
"count": 4,
"tag": "forge:dusts/amber"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"tag": "forge:ores/apatite"
},
"result": {
"count": 2,
"count": 4,
"tag": "forge:dusts/apatite"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"tag": "forge:ores/certus_quartz"
},
"result": {
"count": 2,
"count": 4,
"tag": "forge:dusts/certus_quartz"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"tag": "forge:ores/charged_certus_quartz"
},
"result": {
"count": 2,
"count": 4,
"tag": "forge:dusts/charged_certus_quartz"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"tag": "forge:ores/cinnabar"
},
"result": {
"count": 2,
"count": 4,
"tag": "forge:dusts/cinnabar"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"tag": "forge:ores/coal"
},
"result": {
"count": 2,
"count": 4,
"tag": "forge:dusts/coal"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"tag": "forge:ores/diamond"
},
"result": {
"count": 2,
"count": 4,
"tag": "forge:dusts/diamond"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"tag": "forge:ores/emerald"
},
"result": {
"count": 2,
"count": 4,
"tag": "forge:dusts/emerald"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"tag": "forge:ores/fluorite"
},
"result": {
"count": 2,
"count": 4,
"tag": "forge:dusts/fluorite"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"tag": "forge:ores/lapis"
},
"result": {
"count": 2,
"count": 4,
"tag": "forge:dusts/lapis"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"tag": "forge:ores/peridot"
},
"result": {
"count": 2,
"count": 4,
"tag": "forge:dusts/peridot"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"tag": "forge:ores/quartz"
},
"result": {
"count": 2,
"count": 4,
"tag": "forge:dusts/quartz"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"tag": "forge:ores/redstone"
},
"result": {
"count": 2,
"count": 4,
"tag": "forge:dusts/redstone"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"tag": "forge:ores/ruby"
},
"result": {
"count": 2,
"count": 4,
"tag": "forge:dusts/ruby"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"tag": "forge:ores/sapphire"
},
"result": {
"count": 2,
"count": 4,
"tag": "forge:dusts/sapphire"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"tag": "forge:ores/sulfur"
},
"result": {
"count": 2,
"count": 4,
"tag": "forge:dusts/sulfur"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"tag": "forge:ores/topaz"
},
"result": {
"count": 2,
"count": 4,
"tag": "forge:dusts/topaz"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ protected void buildRecipes(Consumer<Pair<ResourceLocation, JsonObject>> recipeC

protected void buildCrushingRecipeForGem(String gem, Consumer<Pair<ResourceLocation, JsonObject>> recipeConsumer) {
var gemDustId = new ResourceLocation(Occultism.MODID, gem + "_dust");
var gemDustRecipe = this.buildCrushingRecipe("forge:ores/" + gem, "forge:dusts/" + gem, 2, 200, false);
var gemDustRecipe = this.buildCrushingRecipe("forge:ores/" + gem, "forge:dusts/" + gem, 4, 200, false);
recipeConsumer.accept(new Pair<>(gemDustId, gemDustRecipe));
}

Expand Down

0 comments on commit 53b3eff

Please sign in to comment.