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

* Permafrost, cold grass, osier, cold taiga, tweaks * Tweak osier and cold grass item * formatting * Move cold_taiga to taiga/cold and migrate taiga/base * Fix subbiomes
30 lines
412 B
Zig
30 lines
412 B
Zig
.{
|
|
.properties = .{
|
|
.mountain,
|
|
.cold,
|
|
.barren,
|
|
.wet,
|
|
},
|
|
.minHeight = 120,
|
|
.maxHeight = 256,
|
|
|
|
.mountains = 125,
|
|
|
|
.music = "cubyz:DarkTimes",
|
|
|
|
.ground_structure = .{
|
|
"3 to 6 cubyz:snow",
|
|
"1 to 3 cubyz:permafrost",
|
|
},
|
|
.stoneBlock = "cubyz:glacite",
|
|
.structures = .{
|
|
.{
|
|
.id = "cubyz:stalagmite",
|
|
.block = "cubyz:ice",
|
|
.chance = 0.08,
|
|
.size = 3,
|
|
.size_variation = 5,
|
|
},
|
|
},
|
|
}
|