mirror of
https://github.com/PixelGuys/Cubyz.git
synced 2025-08-03 19:28:49 -04:00
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:
parent
5ae29fb891
commit
894a8bd93a
@ -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,
|
||||
},
|
||||
},
|
||||
}
|
||||
|
53
assets/cubyz/biomes/swamp/clearing.zig.zon
Normal file
53
assets/cubyz/biomes/swamp/clearing.zig.zon
Normal 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,
|
||||
},
|
||||
},
|
||||
}
|
@ -17,7 +17,7 @@
|
||||
.parentBiomes = .{
|
||||
.{
|
||||
.id = "cubyz:swamp/base",
|
||||
.chance = 24,
|
||||
.chance = 6,
|
||||
},
|
||||
},
|
||||
}
|
||||
|
@ -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,
|
||||
},
|
||||
},
|
||||
|
64
assets/cubyz/biomes/wetlands/willows.zig.zon
Normal file
64
assets/cubyz/biomes/wetlands/willows.zig.zon
Normal 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,
|
||||
},
|
||||
},
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user