Cubyz/assets/cubyz/biomes/ocean.zig.zon

54 lines
824 B
Zig

.{
.properties = .{
.ocean,
},
.radius = 500,
.minHeight = -100,
.maxHeight = -22,
.roughness = 15,
.hills = 15,
.rivers = true,
.music = "cubyz:under_the_water_sky",
.ground_structure = .{
"2 to 3 cubyz:gravel",
},
.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:sand",
.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},
},
},
}