Skip to content

Commit

Permalink
Remove gravel from silt veins, instead increasing it in the spoils
Browse files Browse the repository at this point in the history
  • Loading branch information
BluSunrize committed Mar 29, 2024
1 parent 9a04374 commit 9df31ab
Show file tree
Hide file tree
Showing 6 changed files with 32 additions and 50 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -342,11 +342,10 @@ private void mineralMixes(RecipeOutput out)
.dimensionOverworld()
.biomeCondition(ImmutableSet.of(BiomeTags.IS_RIVER))
.addSoilSpoils()
.ore(Items.CLAY, .5f)
.ore(Items.SAND, .3f)
.ore(Items.GRAVEL, .2f)
.ore(Items.CLAY, .6f)
.ore(Items.SAND, .4f)
.weight(25)
.failchance(.05f)
.failchance(.2f)
.build(out, toRL("mineral/silt"));
MineralMixBuilder.builder()
.dimensionOverworld()
Expand Down Expand Up @@ -490,9 +489,8 @@ private void mineralMixes(RecipeOutput out)
.biomeCondition(ImmutableSet.of(BiomeTags.IS_RIVER))
.addSoilSpoils()
.ore(Tags.Items.GEMS_DIAMOND, .2f)
.ore(Items.CLAY, .3f)
.ore(Items.SAND, .3f)
.ore(Items.GRAVEL, .2f)
.ore(Items.CLAY, .4f)
.ore(Items.SAND, .4f)
.weight(15)
.failchance(.2f)
.build(out, toRL("mineral/alluvial_sift"));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -110,9 +110,9 @@ public MineralMixBuilder addOverworldSpoils()

public MineralMixBuilder addSoilSpoils()
{
return spoil(Items.COARSE_DIRT, 0.2f)
.spoil(Items.COBBLESTONE, 0.5f)
.spoil(Items.GRAVEL, 0.3f);
return spoil(Items.GRAVEL, 0.6f)
.spoil(Items.COBBLESTONE, 0.3f)
.spoil(Items.COARSE_DIRT, 0.1f);
}

public MineralMixBuilder addSeabedSpoils()
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 9df31ab

Please sign in to comment.