mirror of
https://github.com/PixelGuys/Cubyz.git
synced 2025-08-03 11:17:05 -04:00
54 lines
846 B
Zig
54 lines
846 B
Zig
.{
|
|
.properties = .{
|
|
.cold,
|
|
.ocean,
|
|
},
|
|
.type = .arctic_ocean,
|
|
.minHeight = -100,
|
|
.maxHeight = -22,
|
|
.radius = 500,
|
|
|
|
.roughness = 20,
|
|
.hills = 10,
|
|
|
|
.music = "cubyz:under_the_water_sky",
|
|
|
|
.ground_structure = .{
|
|
"1 to 2 cubyz:cobblestone",
|
|
},
|
|
.structures = .{
|
|
.{
|
|
.id = "cubyz:ground_patch",
|
|
.block = "cubyz:mossy_cobblestone",
|
|
.chance = 0.064,
|
|
.width = 6,
|
|
.variation = 2,
|
|
.depth = 2,
|
|
.smoothness = 0.2,
|
|
},
|
|
.{
|
|
.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},
|
|
},
|
|
},
|
|
}
|