From fd43253f4a66b6e9f5b87b1ce2939d3b12e938bb Mon Sep 17 00:00:00 2001 From: ikabod-kee <155805949+ikabod-kee@users.noreply.github.com> Date: Tue, 11 Feb 2025 13:09:18 -0500 Subject: [PATCH] Add Ice Caves! (#1028) * Add Ice Caves! * Update glacite.zig.zon * Reverted Glacite and Better Ice Caves * Added Fog --- assets/cubyz/biomes/cave/ice_cave.zig.zon | 41 +++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 assets/cubyz/biomes/cave/ice_cave.zig.zon diff --git a/assets/cubyz/biomes/cave/ice_cave.zig.zon b/assets/cubyz/biomes/cave/ice_cave.zig.zon new file mode 100644 index 00000000..c812b968 --- /dev/null +++ b/assets/cubyz/biomes/cave/ice_cave.zig.zon @@ -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, + }, + }, +}