mirror of
https://github.com/PixelGuys/Cubyz.git
synced 2025-08-03 11:17:05 -04:00
46 lines
664 B
Zig
46 lines
664 B
Zig
.{
|
|
.properties = .{
|
|
.hot,
|
|
.ocean,
|
|
},
|
|
.radius = 500,
|
|
.minHeight = -100,
|
|
.maxHeight = -22,
|
|
|
|
.roughness = 10,
|
|
.hills = 20,
|
|
|
|
.music = "cubyz:tides",
|
|
|
|
.ground_structure = .{
|
|
"2 to 4 cubyz:sand",
|
|
},
|
|
.stoneBlock = "cubyz:sandstone",
|
|
|
|
.structures = .{
|
|
.{
|
|
.id = "cubyz:ground_patch",
|
|
.block = "cubyz:gravel",
|
|
.chance = 0.032,
|
|
.width = 6,
|
|
.variation = 2,
|
|
.depth = 2,
|
|
.smoothness = 0.2,
|
|
},
|
|
},
|
|
.transitionBiomes = .{
|
|
.{
|
|
.id = "cubyz:beach",
|
|
.chance = 1,
|
|
.width = 1,
|
|
.properties = .{.land, .inland},
|
|
},
|
|
.{
|
|
.id = "cubyz:ocean_shelf",
|
|
.chance = 1,
|
|
.width = 2,
|
|
.properties = .{.land, .inland},
|
|
},
|
|
},
|
|
}
|