-
Notifications
You must be signed in to change notification settings - Fork 58
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added a void to separate the cave world from the root world. (#833)
* Add files via upload * Move the files because I love github * ACTUALLY replace the files. I love github * Changed it to 50k * Folder for void biomes + other changes Made torches rarer, Fixed void caverns generating too high, Made the fog lighter, Added a root crystals biome (it's a bit rare, I haven't seen it generate, but hypothetically it should be there) * Removed air patches * Various Void Changes Made void spawn lower, Made void root torches more common, Changed fog color * Fixed Fog Color and Made Fog Thicker * Made the void 1500 blocks tall * Added caves parameter to Void * Removed stoneblock replacement
- Loading branch information
1 parent
afcef76
commit c784f16
Showing
11 changed files
with
83 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
.{ | ||
.isCave = true, | ||
.maxHeight = 0, | ||
.minHeight = -48250, | ||
|
||
.fogDensity = 2, | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
.{ | ||
.isCave = true, | ||
.maxHeight = -512, | ||
.minHeight = -48250, | ||
|
||
.chance = 0.2, | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
.{ | ||
.isCave = true, | ||
.maxHeight = -512, | ||
|
||
.minHeight = -48250, | ||
.chance = 0.01, | ||
|
||
.caves = -0.1, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
.{ | ||
.isCave = true, | ||
.maxHeight = -48125, | ||
.minHeight = -48500, | ||
.stoneBlock = "cubyz:stone", | ||
.fogDensity = 10, | ||
.fogColor = 0x272334, | ||
.chance = 100, | ||
|
||
.music = "cubyz:heart-of-the-beast", | ||
|
||
.structures = .{ | ||
}, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
.{ | ||
.isCave = true, | ||
.maxHeight = -640, | ||
|
||
.minHeight = -48250, | ||
.fogDensity = 20, | ||
.fogColor = 0x51240c, | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
.{ | ||
.isCave = true, | ||
.maxHeight = -256, | ||
.minHeight = -48250, | ||
.chance = 0.2, | ||
|
||
.fogDensity = 10, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
.{ | ||
.isCave = true, | ||
.maxHeight = -48500, | ||
.minHeight = -50000, | ||
.fogDensity = 10, | ||
.fogColor = 0x272334, | ||
.chance = 100, | ||
.caves = 1, | ||
.music = "cubyz:heart-of-the-beast", | ||
|
||
.structures = .{ | ||
}, | ||
} |
8 changes: 4 additions & 4 deletions
8
assets/cubyz/biomes/cave/void_cavern.zig.zon → ...ubyz/biomes/cave/void/void_cavern.zig.zon
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
.{ | ||
.isCave = true, | ||
.maxHeight = -50000, | ||
.fogDensity = 10, | ||
.fogColor = 0x272334, | ||
.chance = 0.1, | ||
.caveRadiusFactor = -1, | ||
.caves = 0.5, | ||
.crystals = 32, | ||
|
||
.music = "cubyz:la_kubisa_caverna", | ||
.stoneBlock = "cubyz:stone", | ||
.structures = .{ | ||
.{ | ||
.id = "cubyz:boulder", | ||
.chance = 0.016, | ||
.block = "cubyz:cobblestone", | ||
.size = 5, | ||
.size_variance = 3, | ||
}, | ||
.{ | ||
.id = "cubyz:boulder", | ||
.chance = 0.016, | ||
.block = "cubyz:stone", | ||
.size = 4, | ||
.size_variance = 2, | ||
}, | ||
}, | ||
} |
18 changes: 16 additions & 2 deletions
18
assets/cubyz/biomes/cave/void_roots.zig.zon → ...cubyz/biomes/cave/void/void_roots.zig.zon
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters