Cubyz/assets/cubyz/biomes/desert/base.zig.zon
Garrett 1eb813ff51
Reduce Cacti spawn rates (#1163)
This is my first contribution to Cubyz. There were too many cacti spawning in the desert. I adjusted the rates so they would appear more infrequently and make the desert look more natural.
2025-03-06 17:56:04 +01:00

29 lines
460 B
Zig

.{
.properties = .{
.hot,
.dry,
.barren,
},
.chance = 2,
.minHeight = 22,
.maxHeight = 40,
.minRadius = 256,
.maxRadius = 320,
.hills = 20,
.validPlayerSpawn = false,
.music = "cubyz:EasternThought",
.ground_structure = .{
"3 to 4 cubyz:sand",
},
.structures = .{
.{
.id = "cubyz:simple_vegetation",
.block = "cubyz:cactus",
.chance = 0.01,
.height = 2,
.height_variation = 3,
},
},
.stoneBlock = "cubyz:sandstone",
}