Skip to content

Commit

Permalink
Larger copper ore veins (#693)
Browse files Browse the repository at this point in the history
  • Loading branch information
mikerooni authored Jan 5, 2024
1 parent d7e9a5a commit bff0d72
Show file tree
Hide file tree
Showing 2 changed files with 41 additions and 32 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ but you will need to craft the ones you're actively using again to regain functi
- plungers made from different rubbers now have different durabilities

**Fixes:**
- fixed certain ore veins being too small
- fix LuV prospector recipe
- fix EMI screen loading error
- fix diodes being reset to 1A on chunk load
Expand Down
72 changes: 40 additions & 32 deletions common/src/main/java/com/gregtechceu/gtceu/common/data/GTOres.java
Original file line number Diff line number Diff line change
Expand Up @@ -109,10 +109,11 @@ public class GTOres {
.rareBlock(new VeinBlockDefinition(Plutonium239, 1))
.rareBlockChance(0.25f)
.veininessThreshold(0.1f)
.maxRichnessThreshold(0.3f)
.minRichness(0.3f)
.maxRichness(0.5f)
.edgeRoundoffBegin(10)
.maxRichnessThreshold(0.175f)
.minRichness(0.4f)
.maxRichness(0.7f)
.edgeRoundoffBegin(3)
.maxEdgeRoundoff(0.1f)
)
.surfaceIndicatorGenerator(indicator -> indicator
.surfaceRock(Naquadah)
Expand All @@ -130,10 +131,11 @@ public class GTOres {
.rareBlock(new VeinBlockDefinition(Uraninite, 2))
.rareBlockChance(0.33f)
.veininessThreshold(0.1f)
.maxRichnessThreshold(0.4f)
.minRichness(0.2f)
.maxRichness(0.5f)
.edgeRoundoffBegin(12)
.maxRichnessThreshold(0.175f)
.minRichness(0.4f)
.maxRichness(0.7f)
.edgeRoundoffBegin(3)
.maxEdgeRoundoff(0.1f)
)
.surfaceIndicatorGenerator(indicator -> indicator
.surfaceRock(Pitchblende)
Expand Down Expand Up @@ -193,10 +195,11 @@ public class GTOres {
.rareBlock(new VeinBlockDefinition(Gold, 1))
.rareBlockChance(0.075f)
.veininessThreshold(0.1f)
.maxRichnessThreshold(0.4f)
.minRichness(0.2f)
.maxRichness(0.5f)
.edgeRoundoffBegin(12)
.maxRichnessThreshold(0.175f)
.minRichness(0.4f)
.maxRichness(0.7f)
.edgeRoundoffBegin(3)
.maxEdgeRoundoff(0.1f)
)
.surfaceIndicatorGenerator(indicator -> indicator
.surfaceRock(Goethite)
Expand Down Expand Up @@ -380,10 +383,11 @@ public class GTOres {
.rareBlock(new VeinBlockDefinition(Stibnite, 1))
.rareBlockChance(0.15f)
.veininessThreshold(0.1f)
.maxRichnessThreshold(0.4f)
.minRichness(0.2f)
.maxRichness(0.5f)
.edgeRoundoffBegin(12)
.maxRichnessThreshold(0.175f)
.minRichness(0.4f)
.maxRichness(0.7f)
.edgeRoundoffBegin(3)
.maxEdgeRoundoff(0.1f)
)
.surfaceIndicatorGenerator(indicator -> indicator
.surfaceRock(Tetrahedrite)
Expand Down Expand Up @@ -449,10 +453,11 @@ public class GTOres {
.rareBlock(new VeinBlockDefinition(Cassiterite, 2))
.rareBlockChance(0.33f)
.veininessThreshold(0.1f)
.maxRichnessThreshold(0.4f)
.minRichness(0.2f)
.maxRichness(0.5f)
.edgeRoundoffBegin(12)
.maxRichnessThreshold(0.175f)
.minRichness(0.4f)
.maxRichness(0.7f)
.edgeRoundoffBegin(3)
.maxEdgeRoundoff(0.1f)
)
.surfaceIndicatorGenerator(indicator -> indicator
.surfaceRock(Cassiterite)
Expand Down Expand Up @@ -487,10 +492,11 @@ public class GTOres {
.rareBlock(new VeinBlockDefinition(Realgar, 1))
.rareBlockChance(0.05f)
.veininessThreshold(0.1f)
.maxRichnessThreshold(0.4f)
.minRichness(0.2f)
.maxRichness(0.5f)
.edgeRoundoffBegin(12)
.maxRichnessThreshold(0.175f)
.minRichness(0.4f)
.maxRichness(0.7f)
.edgeRoundoffBegin(3)
.maxEdgeRoundoff(0.1f)
)
.surfaceIndicatorGenerator(indicator -> indicator
.surfaceRock(Chalcopyrite)
Expand Down Expand Up @@ -562,10 +568,11 @@ public class GTOres {
.oreBlock(new VeinBlockDefinition(Hematite, 2))
.oreBlock(new VeinBlockDefinition(Malachite, 1))
.veininessThreshold(0.1f)
.maxRichnessThreshold(0.4f)
.minRichness(0.2f)
.maxRichness(0.5f)
.edgeRoundoffBegin(12)
.maxRichnessThreshold(0.175f)
.minRichness(0.4f)
.maxRichness(0.7f)
.edgeRoundoffBegin(3)
.maxEdgeRoundoff(0.1f)
)
.surfaceIndicatorGenerator(indicator -> indicator
.surfaceRock(Goethite)
Expand Down Expand Up @@ -699,10 +706,11 @@ public class GTOres {
.oreBlock(new VeinBlockDefinition(Pyrite, 2))
.oreBlock(new VeinBlockDefinition(Copper, 2))
.veininessThreshold(0.1f)
.maxRichnessThreshold(0.4f)
.minRichness(0.2f)
.maxRichness(0.5f)
.edgeRoundoffBegin(12)
.maxRichnessThreshold(0.175f)
.minRichness(0.4f)
.maxRichness(0.7f)
.edgeRoundoffBegin(3)
.maxEdgeRoundoff(0.1f)
)
.surfaceIndicatorGenerator(indicator -> indicator
.surfaceRock(Copper)
Expand Down

0 comments on commit bff0d72

Please sign in to comment.