-
-
Notifications
You must be signed in to change notification settings - Fork 221
Desert Shrublands #2967
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Desert Shrublands #2967
Changes from all commits
8fbc947
1d3a0f6
ead1114
8ed1d80
a2c1761
5e89809
1edd0af
ee829c0
d9c746b
059b824
d3e85c3
3b61e42
1a542d6
59ab4e3
9c875df
4c6159a
5025612
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,18 @@ | ||
| .{ | ||
| .properties = .{ | ||
| .hot, | ||
| }, | ||
| .tags = .{ | ||
| .cactus, | ||
| .baobab, | ||
| }, | ||
| .validPlayerSpawn = false, | ||
| .music = "cubyz:EasternThought", | ||
| .chance = 0, | ||
| .fogDensity = 1.5, | ||
| .fogColor = 0xe9f2e2, | ||
| .ground_structure = .{ | ||
| "3 to 4 cubyz:sand", | ||
| }, | ||
| .stoneBlock = "cubyz:sandstone/base", | ||
| } |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,77 @@ | ||
| .{ | ||
| .minHeightLimit = 7, | ||
| .minHeight = 22, | ||
| .maxHeight = 40, | ||
| .maxHeightLimit = 50, | ||
| .minRadius = 256, | ||
| .maxRadius = 320, | ||
| .hills = 30, | ||
| .chance = 0.5, | ||
| .structures = .{ | ||
| .{ | ||
| .id = "cubyz:sbb", | ||
| .structure = "cubyz:tree/baobab/shrub", | ||
| .placeMode = .degradable, | ||
| .chance = 0.14, | ||
| }, | ||
| .{ | ||
| .id = "cubyz:sbb", | ||
| .structure = "cubyz:tree/baobab/small", | ||
| .placeMode = .degradable, | ||
| .chance = 0.05, | ||
| }, | ||
| .{ | ||
| .id = "cubyz:sbb", | ||
| .structure = "cubyz:cactus/saguaro", | ||
| .placeMode = .degradable, | ||
| .chance = 0.01, | ||
| }, | ||
| .{ | ||
| .id = "cubyz:sbb", | ||
| .structure = "cubyz:cactus/young", | ||
| .placeMode = .degradable, | ||
| .chance = 0.006, | ||
| }, | ||
| .{ | ||
| .id = "cubyz:ground_patch", | ||
| .block = "cubyz:dirt", | ||
| .chance = 0.2, | ||
| .width = 4, | ||
| .variation = 6, | ||
| .depth = 3, | ||
| .smoothness = 0.2, | ||
| }, | ||
| .{ | ||
| .id = "cubyz:flower_patch", | ||
| .blocks = .{"cubyz:tussock"}, | ||
| .chance = 0.08, | ||
| .width = 4, | ||
| .variation = 4, | ||
| .density = 0.2, | ||
| .priority = 0.1, | ||
| }, | ||
| .{ | ||
| .id = "cubyz:simple_vegetation", | ||
| .chance = 0.05, | ||
| .block = "cubyz:ocotillo", | ||
| .height = 1, | ||
| .height_variation = 0, | ||
| }, | ||
| .{ | ||
| .id = "cubyz:flower_patch", | ||
| .blocks = .{"cubyz:ocotillo"}, | ||
| .chance = 0.02, | ||
| .width = 4, | ||
| .variation = 4, | ||
| .density = 0.2, | ||
| .priority = 0.1, | ||
| }, | ||
| .{ | ||
| .id = "cubyz:boulder", | ||
| .chance = 0.02, | ||
| .block = "cubyz:slate/cobble", | ||
| .size = 3, | ||
| .size_variance = 1, | ||
| }, | ||
| }, | ||
| } |
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Please make this more common, the biome needs more sparse areas |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,93 @@ | ||
| .{ | ||
| .minHeightLimit = 7, | ||
| .minHeight = 32, | ||
| .maxHeight = 40, | ||
| .maxHeightLimit = 50, | ||
| .minRadius = 50, | ||
| .maxRadius = 70, | ||
| .hills = 20, | ||
| .keepOriginalTerrain = 1, | ||
| .structures = .{ | ||
| .{ | ||
| .id = "cubyz:sbb", | ||
| .structure = "cubyz:tree/baobab/shrub", | ||
| .placeMode = .degradable, | ||
| .chance = 0.06, | ||
| }, | ||
| .{ | ||
| .id = "cubyz:sbb", | ||
| .structure = "cubyz:cactus/saguaro", | ||
| .placeMode = .degradable, | ||
| .chance = 0.01, | ||
| }, | ||
| .{ | ||
| .id = "cubyz:sbb", | ||
| .structure = "cubyz:cactus/young", | ||
| .placeMode = .degradable, | ||
| .chance = 0.003, | ||
| }, | ||
| .{ | ||
| .id = "cubyz:ground_patch", | ||
| .block = "cubyz:dirt", | ||
| .chance = 0.18, | ||
| .width = 5, | ||
| .variation = 6, | ||
| .depth = 3, | ||
| .smoothness = 0.1, | ||
| }, | ||
| .{ | ||
| .id = "cubyz:flower_patch", | ||
| .blocks = .{"cubyz:tussock"}, | ||
| .chance = 0.23, | ||
| .width = 4, | ||
| .variation = 4, | ||
| .density = 0.2, | ||
| .priority = 0.1, | ||
| }, | ||
| .{ | ||
| .id = "cubyz:simple_vegetation", | ||
| .chance = 0.09, | ||
| .block = "cubyz:ocotillo", | ||
| .height = 1, | ||
| .height_variation = 0, | ||
| }, | ||
| .{ | ||
| .id = "cubyz:flower_patch", | ||
| .blocks = .{"cubyz:ocotillo"}, | ||
| .chance = 0.02, | ||
| .width = 4, | ||
| .variation = 4, | ||
| .density = 0.2, | ||
| .priority = 0.1, | ||
| }, | ||
| .{ | ||
| .id = "cubyz:simple_vegetation", | ||
| .chance = 0.11, | ||
| .block = "cubyz:dry_grass_vegetation", | ||
| .height = 1, | ||
| .height_variation = 0, | ||
| }, | ||
| .{ | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
| .id = "cubyz:ground_patch", | ||
| .block = "cubyz:pebbles:cubyz:sand", | ||
| .chance = 0.05, | ||
| .width = 1, | ||
| .variation = 1, | ||
| .depth = 1, | ||
| .smoothness = 0.6, | ||
| }, | ||
| .{ | ||
| .id = "cubyz:boulder", | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
| .chance = 0.02, | ||
| .block = "cubyz:slate/cobble", | ||
| .size = 3, | ||
| .size_variance = 1, | ||
| }, | ||
| }, | ||
| .parentBiomes = .{ | ||
| .{ | ||
| .id = "cubyz:desert_shrubland/base", | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Please update these to the new names, they are causing errors. |
||
| .chance = 25, | ||
| }, | ||
| }, | ||
| } | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think this could be less common. |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,111 @@ | ||
| .{ | ||
| .minHeightLimit = 7, | ||
| .minHeight = 22, | ||
| .maxHeight = 40, | ||
| .maxHeightLimit = 50, | ||
| .minRadius = 50, | ||
| .maxRadius = 70, | ||
| .hills = 20, | ||
| .keepOriginalTerrain = 1, | ||
| .structures = .{ | ||
| .{ | ||
| .id = "cubyz:sbb", | ||
| .structure = "cubyz:tree/baobab/shrub", | ||
| .placeMode = .degradable, | ||
| .chance = 0.30, | ||
| }, | ||
| .{ | ||
| .id = "cubyz:sbb", | ||
| .structure = "cubyz:tree/baobab/small", | ||
| .placeMode = .degradable, | ||
| .chance = 0.2, | ||
| }, | ||
| .{ | ||
| .id = "cubyz:sbb", | ||
| .structure = "cubyz:tree/baobab/young", | ||
| .placeMode = .degradable, | ||
| .chance = 0.05, | ||
| }, | ||
| .{ | ||
| .id = "cubyz:sbb", | ||
| .structure = "cubyz:tree/baobab/grandidieri", | ||
| .placeMode = .degradable, | ||
| .chance = 0.01, | ||
| }, | ||
| .{ | ||
| .id = "cubyz:sbb", | ||
| .structure = "cubyz:cactus/saguaro", | ||
| .placeMode = .degradable, | ||
| .chance = 0.01, | ||
| }, | ||
| .{ | ||
| .id = "cubyz:sbb", | ||
| .structure = "cubyz:cactus/young", | ||
| .placeMode = .degradable, | ||
| .chance = 0.003, | ||
| }, | ||
| .{ | ||
| .id = "cubyz:ground_patch", | ||
| .block = "cubyz:dirt", | ||
| .chance = 0.28, | ||
| .width = 5, | ||
| .variation = 6, | ||
| .depth = 3, | ||
| .smoothness = 0.1, | ||
| }, | ||
| .{ | ||
| .id = "cubyz:flower_patch", | ||
| .blocks = .{"cubyz:tussock"}, | ||
| .chance = 0.28, | ||
| .width = 4, | ||
| .variation = 4, | ||
| .density = 0.2, | ||
| .priority = 0.1, | ||
| }, | ||
| .{ | ||
| .id = "cubyz:simple_vegetation", | ||
| .chance = 0.14, | ||
| .block = "cubyz:ocotillo", | ||
| .height = 1, | ||
| .height_variation = 0, | ||
| }, | ||
| .{ | ||
| .id = "cubyz:flower_patch", | ||
| .blocks = .{"cubyz:ocotillo"}, | ||
| .chance = 0.03, | ||
| .width = 4, | ||
| .variation = 4, | ||
| .density = 0.2, | ||
| .priority = 0.1, | ||
| }, | ||
| .{ | ||
| .id = "cubyz:simple_vegetation", | ||
| .chance = 0.07, | ||
| .block = "cubyz:dry_grass_vegetation", | ||
| .height = 1, | ||
| .height_variation = 0, | ||
| }, | ||
| .{ | ||
| .id = "cubyz:ground_patch", | ||
| .block = "cubyz:pebbles:cubyz:sand", | ||
| .chance = 0.05, | ||
| .width = 1, | ||
| .variation = 1, | ||
| .depth = 1, | ||
| .smoothness = 0.6, | ||
| }, | ||
| .{ | ||
| .id = "cubyz:boulder", | ||
| .chance = 0.03, | ||
| .block = "cubyz:slate/cobble", | ||
| .size = 3, | ||
| .size_variance = 1, | ||
| }, | ||
| }, | ||
| .parentBiomes = .{ | ||
| .{ | ||
| .id = "cubyz:desert_shrubland/base", | ||
| .chance = 30, | ||
| }, | ||
| }, | ||
| } |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,92 @@ | ||
| .{ | ||
| .minHeightLimit = 7, | ||
| .minHeight = 30, | ||
| .maxHeight = 60, | ||
| .maxHeightLimit = 70, | ||
| .minRadius = 70, | ||
| .maxRadius = 90, | ||
| .hills = 30, | ||
| .structures = .{ | ||
| .{ | ||
| .id = "cubyz:sbb", | ||
| .structure = "cubyz:tree/baobab/shrub", | ||
| .placeMode = .degradable, | ||
| .chance = 0.36, | ||
| }, | ||
| .{ | ||
| .id = "cubyz:sbb", | ||
| .structure = "cubyz:cactus/saguaro", | ||
| .placeMode = .degradable, | ||
| .chance = 0.01, | ||
| }, | ||
| .{ | ||
| .id = "cubyz:sbb", | ||
| .structure = "cubyz:cactus/young", | ||
| .placeMode = .degradable, | ||
| .chance = 0.003, | ||
| }, | ||
| .{ | ||
| .id = "cubyz:ground_patch", | ||
| .block = "cubyz:dirt", | ||
| .chance = 0.24, | ||
| .width = 5, | ||
| .variation = 6, | ||
| .depth = 3, | ||
| .smoothness = 0.2, | ||
| }, | ||
| .{ | ||
| .id = "cubyz:ground_patch", | ||
| .block = "cubyz:pebbles:cubyz:sand", | ||
| .chance = 0.17, | ||
| .width = 1, | ||
| .variation = 1, | ||
| .depth = 2, | ||
| .smoothness = 0.1, | ||
| }, | ||
| .{ | ||
| .id = "cubyz:flower_patch", | ||
| .blocks = .{"cubyz:tussock"}, | ||
| .chance = 0.08, | ||
| .width = 4, | ||
| .variation = 4, | ||
| .density = 0.2, | ||
| .priority = 0.1, | ||
| }, | ||
| .{ | ||
| .id = "cubyz:simple_vegetation", | ||
| .chance = 0.05, | ||
| .block = "cubyz:ocotillo", | ||
| .height = 1, | ||
| .height_variation = 0, | ||
| }, | ||
| .{ | ||
| .id = "cubyz:flower_patch", | ||
| .blocks = .{"cubyz:ocotillo"}, | ||
| .chance = 0.02, | ||
| .width = 4, | ||
| .variation = 4, | ||
| .density = 0.2, | ||
| .priority = 0.1, | ||
| }, | ||
| .{ | ||
| .id = "cubyz:simple_vegetation", | ||
| .chance = 0.05, | ||
| .block = "cubyz:dry_grass_vegetation", | ||
| .height = 1, | ||
| .height_variation = 0, | ||
| }, | ||
| .{ | ||
| .id = "cubyz:boulder", | ||
| .chance = 0.03, | ||
| .block = "cubyz:slate/cobble", | ||
| .size = 3, | ||
| .size_variance = 1, | ||
| }, | ||
| }, | ||
| .parentBiomes = .{ | ||
| .{ | ||
| .id = "cubyz:desert_shrubland/base", | ||
| .chance = 50, | ||
| }, | ||
| }, | ||
| } |


There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please move this in to the desert folder (
desert/shrubland/base)(and rename the subbiome as i said previously)
The biome creates a lot of these pools, causing all the plants to be underwater. You can instead use subbiomes like in the oasis or swampy biomes to prevent this. I also think there could be less water generally.
Actually, now that I'm looking at it, is this even intentional? Looks like the hills subbiome is causing it.