-
Notifications
You must be signed in to change notification settings - Fork 60
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Some Biomes --> Their own folders + Extra Sub Biomes (#955)
* Moved things into their own folders * Small changes * Changed Clearing Chances * Fixes * Radius Changes + Limestone Boulders
- Loading branch information
1 parent
659deab
commit 57658d6
Showing
5 changed files
with
43 additions
and
18 deletions.
There are no files selected for viewing
File renamed without changes.
7 changes: 2 additions & 5 deletions
7
assets/cubyz/biomes/forest.zig.zon → assets/cubyz/biomes/forest/base.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
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 @@ | ||
.{ | ||
.properties = .{ | ||
.dry, | ||
.barren, | ||
}, | ||
.minRadius = 6, | ||
.maxRadius = 12, | ||
.chance = 0, | ||
.minHeight = 30, | ||
.maxHeight = 36, | ||
.roughness = 1, | ||
.hills = 10, | ||
.stoneBlock = "cubyz:limestone", | ||
.parentBiomes = .{ | ||
.{ | ||
.id = "cubyz:prairie/base", | ||
.chance = 24, | ||
}, | ||
}, | ||
.structures = .{ | ||
.{ | ||
.id = "cubyz:boulder", | ||
.chance = 0.5, | ||
.block = "cubyz:limestone", | ||
.size = 2, | ||
.size_variance = 9, | ||
}, | ||
}, | ||
} |