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
36 lines
587 B
Zig
36 lines
587 B
Zig
.{
|
|
.properties = .{},
|
|
.chance = 0.04,
|
|
.minHeight = 20,
|
|
.maxHeight = 40,
|
|
.minRadius = 256,
|
|
.maxRadius = 320,
|
|
.mountains = 30,
|
|
|
|
.music = "cubyz:sunrise",
|
|
|
|
.ground_structure = .{
|
|
"cubyz:grass",
|
|
"0 to 1 cubyz:soil",
|
|
},
|
|
.structures = .{
|
|
.{
|
|
.id = "cubyz:simple_tree",
|
|
.leaves = "cubyz:oak_leaves",
|
|
.log = "cubyz:oak_log",
|
|
.top = "cubyz:oak_top",
|
|
.chance = 0.016,
|
|
.type = .round,
|
|
.height = 6,
|
|
.height_variation = 3,
|
|
},
|
|
.{
|
|
.id = "cubyz:boulder",
|
|
.chance = 0.016,
|
|
.block = "cubyz:cobblestone",
|
|
.size = 5,
|
|
.size_variance = 4,
|
|
},
|
|
},
|
|
}
|