Cubyz/assets/cubyz/biomes/cave/cave.zig.zon
IntegratedQuantum b303244773
Run the zon format check with our zig fmt (#1175)
* Format all the zon assets to prepare for running the the format check with our zig fmt

* Update ci.yml

* Remove zon files from the old formatter

* Add a formatting violation to test the CI

* Undo the check
2025-03-07 22:34:55 +01:00

43 lines
672 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,
},
},
}