Add Ice Caves! (#1028)

* Add Ice Caves!

* Update glacite.zig.zon

* Reverted Glacite and Better Ice Caves

* Added Fog
This commit is contained in:
ikabod-kee 2025-02-11 13:09:18 -05:00 committed by GitHub
parent 7d0147af2a
commit fd43253f4a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -0,0 +1,41 @@
.{
.isCave = true,
.maxHeight = -256,
.minHeight = -48250,
.chance = 0.2,
.caves = -0.02,
.fogDensity = 20,
.fogColor = 0xbabfbf,
.stoneBlock = "cubyz:glacite",
.ground_structure = .{
"cubyz:ice",
"7 to 8 cubyz:frost",
},
.structures = .{
.{
.id = "cubyz:ground_patch",
.block = "cubyz:frost",
.chance = 0.25,
.width = 2,
.variation = 5,
.depth = 1,
.smoothness = 1,
},
.{
.id = "cubyz:stalagmite",
.block = "cubyz:ice",
.chance = 0.5,
.size = 2,
.size_variation = 8,
},
.{
.id = "cubyz:ground_patch",
.block = "cubyz:snow",
.chance = 0.1,
.width = 5,
.variation = 3,
.depth = 1,
.smoothness = 0.8,
},
},
}