mirror of
https://github.com/PixelGuys/Cubyz.git
synced 2025-08-03 11:17:05 -04:00
31 lines
446 B
Zig
31 lines
446 B
Zig
.{
|
|
.properties = .{
|
|
.mountain,
|
|
},
|
|
.radius = 400,
|
|
.minHeight = 60,
|
|
.maxHeight = 256,
|
|
|
|
.roughness = 10,
|
|
.mountains = 100,
|
|
|
|
.rivers = true,
|
|
|
|
.ground_structure = .{
|
|
"cubyz:grass",
|
|
"1 to 2 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 = 3,
|
|
.height_variation = 3,
|
|
},
|
|
},
|
|
}
|