Wetlands and Swamp Revamp 2! (#1026)

* Wetlands Revamp

* Swamp changes

* Made flowers grouped!

* Sparser Wetland Trees

* Added the single line!
This commit is contained in:
ikabod-kee 2025-02-20 13:40:50 -05:00 committed by GitHub
parent 5ae29fb891
commit 894a8bd93a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
5 changed files with 172 additions and 18 deletions

View File

@ -25,6 +25,31 @@
.depth = 1,
.smoothness = 0.5,
},
.{
.id = "cubyz:flower_patch",
.block = "cubyz:lush_grass_vegetation",
.chance = 0.25,
.width = 10,
.variation = 6,
.density = 0.3,
.priority = 0.1,
},
.{
.id = "cubyz:simple_vegetation",
.block = "cubyz:fern",
.chance = 0.8,
.height = 1,
.height_variation = 0,
},
.{
.id = "cubyz:flower_patch",
.block = "cubyz:daffodil",
.chance = 0.5,
.width = 1,
.variation = 5,
.density = 0.3,
.priority = 0.1,
},
.{
.id = "cubyz:simple_tree",
.leaves = "cubyz:willow_leaves",
@ -32,17 +57,12 @@
.top = "cubyz:willow_leaves",
.chance = 0.8,
.type = .round,
.height = 6,
.height = 4,
.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,
.leafRadius = 4.0,
.leafRadius_variation = 2.5,
.leafElongation = 0.4,
.deltaLeafElongation = 0.125,
},
},
}

View File

@ -0,0 +1,53 @@
.{
.properties = .{
.hot,
.wet,
.overgrown,
},
.minHeight = 4,
.maxHeight = 4,
.minRadius = 32,
.maxRadius = 48,
.roughness = 3,
.hills = 1,
.chance = 0,
.music = "cubyz:leaves",
.validPlayerSpawn = true,
.ground_structure = .{
"cubyz:lush_grass",
"4 to 5 cubyz:mud",
},
.structures = .{
.{
.id = "cubyz:flower_patch",
.block = "cubyz:lush_grass_vegetation",
.chance = 0.25,
.width = 10,
.variation = 6,
.density = 0.3,
.priority = 0.1,
},
.{
.id = "cubyz:simple_vegetation",
.block = "cubyz:fern",
.chance = 0.8,
.height = 1,
.height_variation = 0,
},
.{
.id = "cubyz:flower_patch",
.block = "cubyz:daffodil",
.chance = 0.5,
.width = 1,
.variation = 5,
.density = 0.3,
.priority = 0.1,
},
},
.parentBiomes = .{
.{
.id = "cubyz:swamp/base",
.chance = 2,
},
},
}

View File

@ -17,7 +17,7 @@
.parentBiomes = .{
.{
.id = "cubyz:swamp/base",
.chance = 24,
.chance = 6,
},
},
}

View File

@ -3,10 +3,10 @@
.wet,
.hot,
},
.minHeight = 2,
.maxHeight = 2,
.minHeight = 1,
.maxHeight = 1,
.roughness = 2,
.hills = 10,
.hills = 7.5,
.minRadius = 160,
.maxRadius = 200,
.music = "cubyz:sunrise",
@ -29,12 +29,29 @@
.leaves = "cubyz:willow_leaves",
.log = "cubyz:willow_log",
.top = "cubyz:willow_top",
.chance = 0.033,
.chance = 0.02,
.type = .round,
.height = 13,
.height = 12,
.height_variation = 4,
.leafRadius = 2,
.leafRadius_variation = 1,
.leafRadius = 4.0,
.leafRadius_variation = 2.5,
.leafElongation = 0.4,
.deltaLeafElongation = 0.125,
.branched = false,
},
.{
.id = "cubyz:simple_tree",
.leaves = "cubyz:willow_leaves",
.log = "cubyz:willow_log",
.top = "cubyz:willow_top",
.chance = 0.02,
.type = .round,
.height = 10,
.height_variation = 2,
.leafRadius = 4.0,
.leafRadius_variation = 2.5,
.leafElongation = 0.4,
.deltaLeafElongation = 0.125,
.branched = false,
},
},

View File

@ -0,0 +1,64 @@
.{
.properties = .{
.wet,
.hot,
},
.minHeight = -2,
.maxHeight = -2,
.roughness = 2,
.chance = 0,
.hills = 3.5,
.minRadius = 64,
.maxRadius = 128,
.music = "cubyz:sunrise",
.ground_structure = .{
"6 to 8 cubyz:mud",
},
.structures = .{
.{
.id = "cubyz:ground_patch",
.block = "cubyz:clay",
.chance = 0.25,
.width = 1,
.variation = 6,
.depth = 2,
.smoothness = 0.6,
},
.{
.id = "cubyz:simple_tree",
.leaves = "cubyz:willow_leaves",
.log = "cubyz:willow_log",
.top = "cubyz:willow_top",
.chance = 0.3,
.type = .round,
.height = 13,
.height_variation = 4,
.leafRadius = 4.0,
.leafRadius_variation = 2.5,
.leafElongation = 0.4,
.deltaLeafElongation = 0.125,
.branched = false,
},
.{
.id = "cubyz:simple_tree",
.leaves = "cubyz:willow_leaves",
.log = "cubyz:willow_log",
.top = "cubyz:willow_top",
.chance = 0.3,
.type = .round,
.height = 11,
.height_variation = 2,
.leafRadius = 4.0,
.leafRadius_variation = 2.5,
.leafElongation = 0.4,
.deltaLeafElongation = 0.125,
.branched = false,
},
},
.parentBiomes = .{
.{
.id = "cubyz:wetlands/base",
.chance = 8,
},
},
}