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
63 lines
1.1 KiB
Zig
63 lines
1.1 KiB
Zig
.{
|
|
.properties = .{},
|
|
.minHeight = 22,
|
|
.maxHeight = 40,
|
|
.minRadius = 256,
|
|
.maxRadius = 320,
|
|
.roughness = 1,
|
|
.hills = 5,
|
|
.music = "cubyz:sunrise",
|
|
.validPlayerSpawn = true,
|
|
.ground_structure = .{
|
|
"cubyz:grass",
|
|
"2 to 3 cubyz:soil",
|
|
},
|
|
.structures = .{
|
|
.{
|
|
.id = "cubyz:simple_tree",
|
|
.leaves = "cubyz:oak_leaves",
|
|
.log = "cubyz:oak_log",
|
|
.top = "cubyz:oak_top",
|
|
.chance = 0.0128,
|
|
.type = .round,
|
|
.height = 6,
|
|
.height_variation = 3,
|
|
.leafElongation = 1.0,
|
|
.deltaLeafElongation = 0.2,
|
|
},
|
|
.{
|
|
.id = "cubyz:boulder",
|
|
.chance = 0.00016,
|
|
.block = "cubyz:stone",
|
|
.size = 5,
|
|
.size_variance = 1,
|
|
},
|
|
.{
|
|
.id = "cubyz:fallen_tree",
|
|
.log = "cubyz:oak_log",
|
|
.top = "cubyz:oak_log",
|
|
.height = 6,
|
|
.height_variation = 3,
|
|
.chance = 0.0024,
|
|
},
|
|
.{
|
|
.id = "cubyz:flower_patch",
|
|
.block = "cubyz:daisies",
|
|
.chance = 0.001,
|
|
.width = 10,
|
|
.variation = 6,
|
|
.density = 0.3,
|
|
.priority = 0.1,
|
|
},
|
|
.{
|
|
.id = "cubyz:flower_patch",
|
|
.block = "cubyz:dandelions",
|
|
.chance = 0.0008,
|
|
.width = 6,
|
|
.variation = 4,
|
|
.density = 0.3,
|
|
.priority = 0.1,
|
|
},
|
|
},
|
|
}
|