mirror of
https://github.com/PixelGuys/Cubyz.git
synced 2025-08-03 11:17:05 -04:00

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