Cubyz/assets/cubyz/biomes/forest/base.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

94 lines
1.8 KiB
Zig

.{
.properties = .{},
.minHeight = 22,
.maxHeight = 40,
.minRadius = 256,
.maxRadius = 320,
.roughness = 10,
.hills = 10,
.music = "cubyz:leaves",
.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.4,
.type = .round,
.height = 6,
.height_variation = 3,
.leafElongation = 1.0,
.deltaLeafElongation = 0.2,
},
.{
.id = "cubyz:simple_tree",
.leaves = "cubyz:birch_leaves",
.log = "cubyz:birch_log",
.top = "cubyz:birch_top",
.chance = 0.2,
.type = .round,
.height = 10,
.height_variation = 5,
.leafRadius = 2.5,
.leafRadius_variation = 1.5,
.leafElongation = 1.7,
.deltaLeafElongation = 0.2,
},
.{
.id = "cubyz:fallen_tree",
.log = "cubyz:oak_log",
.top = "cubyz:oak_log",
.chance = 0.005,
.height = 6,
.height_variation = 3,
},
.{
.id = "cubyz:fallen_tree",
.log = "cubyz:birch_log",
.top = "cubyz:birch_log",
.chance = 0.002,
.height = 6,
.height_variation = 3,
},
.{
.id = "cubyz:simple_vegetation",
.block = "cubyz:grass_vegetation",
.chance = 0.4,
.height = 1,
.height_variation = 0,
},
.{
.id = "cubyz:flower_patch",
.block = "cubyz:daisies",
.chance = 0.008,
.width = 6,
.variation = 3,
.density = 0.3,
.priority = 0.1,
},
.{
.id = "cubyz:flower_patch",
.block = "cubyz:daffodil",
.chance = 0.01,
.width = 6,
.variation = 3,
.density = 0.1,
.priority = 0.1,
},
.{
.id = "cubyz:flower_patch",
.block = "cubyz:castilleja",
.chance = 0.006,
.width = 8,
.variation = 3,
.density = 0.1,
.priority = 0.1,
},
},
}