Skip to content

Commit

Permalink
Jungle Update
Browse files Browse the repository at this point in the history
  • Loading branch information
ikabod-kee committed Feb 3, 2025
1 parent b384ec9 commit b871a71
Show file tree
Hide file tree
Showing 3 changed files with 133 additions and 63 deletions.
63 changes: 0 additions & 63 deletions assets/cubyz/biomes/jungle(TODO).zig.zon

This file was deleted.

76 changes: 76 additions & 0 deletions assets/cubyz/biomes/jungle/base.zig.zon
Original file line number Diff line number Diff line change
@@ -0,0 +1,76 @@
.{
.properties = .{
.hot,
.wet,
.overgrown,
},
.minHeight = 33,
.maxHeight = 44,
.mountains = 10,
.roughness = 20,
.minRadius = 100,
.maxRadius = 160,
.music = "cubyz:leaves",
.ground_structure = .{
"1 cubyz:lush_grass",
"0 to 1 cubyz:mud",
"5 to 6 cubyz:basalt",
},
.structures = .{
.{
.id = "cubyz:flower_patch",
.block = "cubyz:lush_grass_vegetation",
.chance = 0.25,
.width = 10,
.variation = 6,
.density = 0.3,
.priority = 0.1,
},
.{
.id = "cubyz:simple_vegetation",
.block = "cubyz:fern",
.chance = 0.8,
.height = 1,
.height_variation = 0,
},
.{
.id = "cubyz:simple_tree",
.leaves = "cubyz:mahogany_leaves",
.log = "cubyz:mahogany_log",
.top = "cubyz:mahogany_leaves",
.chance = 0.1,
.type = .round,
.height = 24,
.height_variation = 2,
.leafRadius = 8,
.leafRadius_variation = 2.5,
.leafElongation = 0.15,
},
.{
.id = "cubyz:simple_tree",
.leaves = "cubyz:mahogany_leaves",
.log = "cubyz:mahogany_log",
.top = "cubyz:mahogany_leaves",
.chance = 0.7,
.type = .round,
.height = 16,
.height_variation = 8,
.leafRadius = 5,
.leafRadius_variation = 2.5,
.leafElongation = 0.20,
},
.{
.id = "cubyz:simple_tree",
.leaves = "cubyz:mahogany_leaves",
.log = "cubyz:mahogany_log",
.top = "cubyz:mahogany_leaves",
.chance = 0.2,
.type = .round,
.height = 8,
.height_variation = 4,
.leafRadius = 3,
.leafRadius_variation = 2.5,
.leafElongation = 0.33,
},
},
}
57 changes: 57 additions & 0 deletions assets/cubyz/biomes/jungle/clearing.zig.zon
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
.{
.properties = .{
.hot,
.wet,
.overgrown,
},
.minHeight = 33,
.maxHeight = 44,
.mountains = 10,
.roughness = 20,
.chance = 0,
.minRadius = 48,
.maxRadius = 80,
.music = "cubyz:leaves",
.ground_structure = .{
"1 cubyz:lush_grass",
"0 to 1 cubyz:mud",
"5 to 6 cubyz:basalt",
},
.structures = .{
.{
.id = "cubyz:flower_patch",
.block = "cubyz:lush_grass_vegetation",
.chance = 0.25,
.width = 10,
.variation = 6,
.density = 0.3,
.priority = 0.1,
},
.{
.id = "cubyz:simple_vegetation",
.block = "cubyz:fern",
.chance = 0.8,
.height = 1,
.height_variation = 0,
},
.{
.id = "cubyz:simple_tree",
.leaves = "cubyz:mahogany_leaves",
.log = "cubyz:mahogany_log",
.top = "cubyz:mahogany_leaves",
.chance = 0.4,
.type = .round,
.height = 8,
.height_variation = 4,
.leafRadius = 3,
.leafRadius_variation = 2.5,
.leafElongation = 0.33,
},
},
.parentBiomes = .{
.{
.id = "cubyz:jungle/base",
.chance = 0.1,
},
},
}

0 comments on commit b871a71

Please sign in to comment.