mirror of
https://github.com/PixelGuys/Cubyz.git
synced 2025-08-03 11:17:05 -04:00
45 lines
674 B
Zig
45 lines
674 B
Zig
.{
|
|
.isCave = true,
|
|
.maxHeight = 0,
|
|
.minHeight = -48250,
|
|
|
|
.fogDensity = 2,
|
|
|
|
.music = "cubyz:heart-of-the-beast",
|
|
|
|
|
|
|
|
.structures = .{
|
|
.{
|
|
.id = "cubyz:ground_patch",
|
|
.block = "cubyz:gravel",
|
|
.chance = 0.064,
|
|
.width = 5,
|
|
.variation = 5,
|
|
.depth = 3,
|
|
.smoothness = 0.1,
|
|
},
|
|
.{
|
|
.id = "cubyz:stalagmite",
|
|
.block = "cubyz:stone",
|
|
.chance = 0.048,
|
|
.size = 3,
|
|
.size_variation = 6,
|
|
},
|
|
.{
|
|
.id = "cubyz:boulder",
|
|
.chance = 0.016,
|
|
.block = "cubyz:cobblestone",
|
|
.size = 4,
|
|
.size_variance = 3,
|
|
},
|
|
.{
|
|
.id = "cubyz:boulder",
|
|
.chance = 0.016,
|
|
.block = "cubyz:stone",
|
|
.size = 4,
|
|
.size_variance = 4,
|
|
},
|
|
},
|
|
}
|