mirror of
https://github.com/PixelGuys/Cubyz.git
synced 2025-08-03 11:17:05 -04:00
29 lines
434 B
Zig
29 lines
434 B
Zig
.{
|
|
.isCave = true,
|
|
.maxHeight = -64,
|
|
.minHeight = -512,
|
|
.chance = 0.2,
|
|
|
|
.fogDensity = 10,
|
|
|
|
.stoneBlock = "cubyz:marble",
|
|
.structures = .{
|
|
.{
|
|
.id = "cubyz:stalagmite",
|
|
.block = "cubyz:marble",
|
|
.chance = 0.112,
|
|
.size = 4,
|
|
.size_variation = 10,
|
|
},
|
|
.{
|
|
.id = "cubyz:ground_patch",
|
|
.block = "cubyz:water",
|
|
.chance = 0.064,
|
|
.width = 6,
|
|
.variation = 5,
|
|
.depth = 1,
|
|
.smoothness = 1,
|
|
},
|
|
},
|
|
}
|