mirror of
https://github.com/PixelGuys/Cubyz.git
synced 2025-08-03 11:17:05 -04:00

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.
29 lines
460 B
Zig
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",
|
|
}
|