Skip to content
Open

Jungle #1930

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions assets/cubyz/biomes/_migrations.zig.zon
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,5 @@
.{.old = "tundra", .new = "tundra/base"},
.{.old = "forest/base", .new = "forest/mixed/oak_birch"},
.{.old = "forest/clearing", .new = "forest/mixed/oak_birch_clearing"},
.{.old = "jungle", .new = "jungle/base"},
}
75 changes: 0 additions & 75 deletions assets/cubyz/biomes/jungle.zig.zon

This file was deleted.

11 changes: 11 additions & 0 deletions assets/cubyz/biomes/jungle/_defaults.zig.zon
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
.{
.fogDensity = 2,
.fogColor = 0xb0e9d2,
.validPlayerSpawn = true,
.smoothBeaches = true,
.music = "cubyz:leaves",
.properties = .{
.wet,
.hot,
},
}
106 changes: 106 additions & 0 deletions assets/cubyz/biomes/jungle/ancient.zig.zon
Original file line number Diff line number Diff line change
@@ -0,0 +1,106 @@
.{
.chance = 0,
.minHeightLimit = 7,
.minHeight = 35,
.maxHeight = 40,
.maxHeightLimit = 60,
.radius = 32,
.keepOriginalTerrain = 0.5,
.roughness = 10,
.hills = 2,

.ground_structure = .{"4 to 5 cubyz:mud"},

.structures = .{
.{
.id = "cubyz:sbb",
.structure = "cubyz:tree/mahogany/khaya_ivorensis/medium",
.placeMode = .degradable,
.chance = 0.05,
},
.{
.id = "cubyz:sbb",
.structure = "cubyz:tree/mahogany/sapele/large",
.placeMode = .degradable,
.chance = 0.05,
},
.{
.id = "cubyz:sbb",
.structure = "cubyz:tree/mahogany/sapele/ancient",
.placeMode = .degradable,
.chance = 0.06,
},
.{
.id = "cubyz:sbb",
.structure = "cubyz:ruins/jungle/ancient",
.placeMode = .degradable,
.chance = 0.001,
},
.{
.id = "cubyz:ground_patch",
.block = "cubyz:lush_grass",
.chance = 0.01,
.width = 15,
.variation = 3,
.depth = 1,
.smoothness = 0.6,
},
.{
.id = "cubyz:boulder",
.chance = 0.03,
.block = "cubyz:moss:cubyz:cobblestone",
.size = 3,
.size_variance = 2,
},
.{
.id = "cubyz:fallen_tree",
.log = "cubyz:mahogany_log",
.top = "cubyz:mahogany_log",
.chance = 0.03,
.height = 8,
.height_variation = 5,
},
.{
.id = "cubyz:flower_patch",
.block = "cubyz:lush_grass_vegetation",
.chance = 0.2,
.width = 15,
.variation = 3,
.density = 0.03,
.priority = 0.2,
},
.{
.id = "cubyz:flower_patch",
.block = "cubyz:monstera",
.chance = 0.05,
.width = 15,
.variation = 3,
.density = 0.03,
.priority = 0.2,
},
.{
.id = "cubyz:flower_patch",
.block = "cubyz:fern",
.chance = 0.1,
.width = 15,
.variation = 3,
.density = 0.03,
.priority = 0.1,
},
.{
.id = "cubyz:flower_patch",
.block = "cubyz:toadstool",
.chance = 0.01,
.width = 15,
.variation = 3,
.density = 0.03,
.priority = 0.1,
},
},
.parentBiomes = .{
.{
.id = "cubyz:jungle/thick",
.chance = 0.5,
},
},
}
88 changes: 88 additions & 0 deletions assets/cubyz/biomes/jungle/base.zig.zon
Original file line number Diff line number Diff line change
@@ -0,0 +1,88 @@
.{
.minHeightLimit = 7,
.minHeight = 30,
.maxHeight = 50,
.maxHeightLimit = 60,
.roughness = 10,
.hills = 12,

.ground_structure = .{"cubyz:lush_grass", "3 to 4 cubyz:mud"},

.structures = .{
.{
.id = "cubyz:sbb",
.structure = "cubyz:tree/mahogany/khaya_ivorensis/medium",
.placeMode = .degradable,
.chance = 0.05,
},
.{
.id = "cubyz:sbb",
.structure = "cubyz:tree/mahogany/khaya_ivorensis/small",
.placeMode = .degradable,
.chance = 0.05,
},
.{
.id = "cubyz:sbb",
.structure = "cubyz:tree/mahogany/sapele/large",
.placeMode = .degradable,
.chance = 0.025,
},
.{
.id = "cubyz:sbb",
.structure = "cubyz:tree/mahogany/sapele/medium",
.placeMode = .degradable,
.chance = 0.05,
},
.{
.id = "cubyz:sbb",
.structure = "cubyz:tree/mahogany/sapele/small",
.placeMode = .degradable,
.chance = 0.1,
},
.{
.id = "cubyz:ground_patch",
.block = "cubyz:mud",
.chance = 0.15,
.width = 5,
.variation = 6,
.depth = 2,
.smoothness = 0.6,
},
.{
.id = "cubyz:flower_patch",
.block = "cubyz:lush_grass_vegetation",
.chance = 0.2,
.width = 15,
.variation = 3,
.density = 0.05,
.priority = 0.2,
},
.{
.id = "cubyz:flower_patch",
.block = "cubyz:monstera",
.chance = 0.1,
.width = 15,
.variation = 3,
.density = 0.05,
.priority = 0.2,
},
.{
.id = "cubyz:flower_patch",
.block = "cubyz:fern",
.chance = 0.1,
.width = 15,
.variation = 3,
.density = 0.05,
.priority = 0.1,
},
.{
.id = "cubyz:flower_patch",
.block = "cubyz:hibiscus",
.chance = 0.03,
.width = 8,
.variation = 3,
.density = 0.1,
.priority = 0.1,
},
},
}
44 changes: 44 additions & 0 deletions assets/cubyz/biomes/jungle/mossy_rock.zig.zon
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
.{
.chance = 0,
.radius = 20,
.minHeight = 1500,
.maxHeight = 3000,
.keepOriginalTerrain = 0.99,
.roughness = 1,
.mountains = 70,
.hills = 20,
.ground_structure = .{"cubyz:slate"},
.structures = .{
.{
.id = "cubyz:ground_patch",
.block = "cubyz:moss:cubyz:cobblestone",
.chance = 0.2,
.width = 5,
.variation = 6,
.depth = 2,
.smoothness = 0.6,
},
.{
.id = "cubyz:ground_patch",
.block = "cubyz:moss:cubyz:slate",
.chance = 0.1,
.width = 5,
.variation = 4,
.depth = 1,
.smoothness = 0.6,
},
.{
.id = "cubyz:stalagmite",
.block = "cubyz:slate",
.chance = 0.1,
.size = 4,
.size_variation = 3,
},
},
.parentBiomes = .{
.{
.id = "cubyz:jungle/base",
.chance = 4,
},
},
}
Loading