Swamp Revamp (#931)

* Added New Swamp

* Renamed Wetlands internally

* Bam

* Updated Wetlands height

* Update base.zig.zon

* Increased average biome size
This commit is contained in:
ikabod-kee 2025-01-15 12:14:16 -05:00 committed by GitHub
parent 7d3a348863
commit 07ab2c8e58
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 112 additions and 33 deletions

View File

@ -1,33 +0,0 @@
.{
.properties = .{
.cold,
.wet,
},
.minHeight = 22,
.maxHeight = 40,
.roughness = 2,
.hills = 2,
.music = "cubyz:leaves",
.validPlayerSpawn = true,
.ground_structure = .{
"0 to 1 cubyz:grass",
"0 to 1 cubyz:water",
"2 to 3 cubyz:soil",
},
.structures = .{
.{
.id = "cubyz:simple_tree",
.leaves = "cubyz:oak_leaves",
.log = "cubyz:oak_log",
.top = "cubyz:oak_top",
.chance = 0.8,
.type = .round,
.height = 6,
.height_variation = 3,
},
},
}

View File

@ -0,0 +1,48 @@
.{
.properties = .{
.hot,
.wet,
.overgrown,
},
.minHeight = 4,
.maxHeight = 4,
.minRadius = 160,
.maxRadius = 200,
.roughness = 3,
.hills = 1,
.music = "cubyz:leaves",
.validPlayerSpawn = true,
.ground_structure = .{
"4 to 5 cubyz:mud",
},
.structures = .{
.{
.id = "cubyz:ground_patch",
.block = "cubyz:lush_grass",
.chance = 0.33,
.width = 5,
.variation = 4,
.depth = 1,
.smoothness = 0.5,
},
.{
.id = "cubyz:simple_tree",
.leaves = "cubyz:willow_leaves",
.log = "cubyz:willow_log",
.top = "cubyz:willow_leaves",
.chance = 0.8,
.type = .round,
.height = 6,
.height_variation = 3,
},
.{
.id = "cubyz:flower_patch",
.block = "cubyz:lush_grass_vegetation",
.chance = 0.1,
.width = 10,
.variation = 6,
.density = 0.3,
.priority = 0.1,
},
},
}

View File

@ -0,0 +1,23 @@
.{
.properties = .{
.hot,
.wet,
},
.minHeight = -4,
.maxHeight = -4,
.minRadius = 32,
.maxRadius = 48,
.chance = 0,
.roughness = 4,
.hills = 3,
.music = "cubyz:leaves",
.ground_structure = .{
"4 to 5 cubyz:mud",
},
.parentBiomes = .{
.{
.id = "cubyz:swamp/base",
.chance = 24,
},
},
}

View File

@ -0,0 +1,41 @@
.{
.properties = .{
.wet,
.hot,
},
.minHeight = 2,
.maxHeight = 2,
.roughness = 2,
.hills = 10,
.minRadius = 160,
.maxRadius = 200,
.music = "cubyz:sunrise",
.ground_structure = .{
"cubyz:lush_grass",
"5 to 7 cubyz:mud",
},
.structures = .{
.{
.id = "cubyz:ground_patch",
.block = "cubyz:mud",
.chance = 0.33,
.width = 5,
.variation = 4,
.depth = 1,
.smoothness = 0.5,
},
.{
.id = "cubyz:simple_tree",
.leaves = "cubyz:willow_leaves",
.log = "cubyz:willow_log",
.top = "cubyz:willow_top",
.chance = 0.033,
.type = .round,
.height = 13,
.height_variation = 4,
.leafRadius = 2,
.leafRadius_variation = 1,
.branched = false,
},
},
}