Skip to content

Commit

Permalink
More worldgen
Browse files Browse the repository at this point in the history
  • Loading branch information
Shadowclaimer committed May 5, 2023
1 parent 7bb0648 commit 457a703
Show file tree
Hide file tree
Showing 10 changed files with 149 additions and 16 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -72,10 +72,9 @@
],
[
"minecraft:glow_lichen",
"minecraft:patch_grass_savanna",
"minecraft:patch_dead_bush_badlands",
"minecraft:patch_dead_bush_2",
"atum:acacia"
"atum:patch_grass_strangesands",
"atum:patch_shrub",
"atum:patch_weed"
],
[
"minecraft:freeze_top_layer"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"dirt_provider": {
"type": "minecraft:simple_state_provider",
"state": {
"Name": "atum:sand"
"Name": "minecraft:dirt"
}
},
"foliage_placer": {
Expand All @@ -25,7 +25,6 @@
}
}
},
"force_dirt": false,
"ignore_vines": true,
"minimum_size": {
"type": "minecraft:two_layers_feature_size",
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
{
"type": "minecraft:random_patch",
"config": {
"feature": {
"feature": {
"type": "minecraft:simple_block",
"config": {
"to_place": {
"type": "minecraft:simple_state_provider",
"state": {
"Name": "atum:dry_grass"
}
}
}
},
"placement": [
{
"type": "minecraft:block_predicate_filter",
"predicate": {
"type": "minecraft:matching_blocks",
"blocks": "minecraft:air"
}
}
]
},
"tries": 16,
"xz_spread": 7,
"y_spread": 3
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
{
"type": "minecraft:random_patch",
"config": {
"feature": {
"feature": {
"type": "minecraft:simple_block",
"config": {
"to_place": {
"type": "minecraft:simple_state_provider",
"state": {
"Name": "atum:shrub"
}
}
}
},
"placement": [
{
"type": "minecraft:block_predicate_filter",
"predicate": {
"type": "minecraft:matching_blocks",
"blocks": "minecraft:air"
}
}
]
},
"tries": 4,
"xz_spread": 7,
"y_spread": 3
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
{
"type": "minecraft:random_patch",
"config": {
"feature": {
"feature": {
"type": "minecraft:simple_block",
"config": {
"to_place": {
"type": "minecraft:simple_state_provider",
"state": {
"Name": "atum:weed"
}
}
}
},
"placement": [
{
"type": "minecraft:block_predicate_filter",
"predicate": {
"type": "minecraft:matching_blocks",
"blocks": "minecraft:air"
}
}
]
},
"tries": 4,
"xz_spread": 7,
"y_spread": 3
}
}

This file was deleted.

12 changes: 6 additions & 6 deletions src/main/resources/data/atum/worldgen/noise_settings/atum.json
Original file line number Diff line number Diff line change
Expand Up @@ -515,7 +515,7 @@
{
"type": "minecraft:block",
"result_state": {
"Name": "atum:sand"
"Name": "atum:strange_sand"
}
}
]
Expand Down Expand Up @@ -1568,7 +1568,7 @@
{
"type": "minecraft:block",
"result_state": {
"Name": "atum:sand"
"Name": "atum:strange_sand"
}
}
]
Expand Down Expand Up @@ -1733,7 +1733,7 @@
{
"type": "minecraft:block",
"result_state": {
"Name": "atum:sand"
"Name": "atum:strange_sand"
}
}
]
Expand Down Expand Up @@ -1991,7 +1991,7 @@
{
"type": "minecraft:block",
"result_state": {
"Name": "atum:sand"
"Name": "atum:strange_sand"
}
}
]
Expand Down Expand Up @@ -2303,7 +2303,7 @@
"then_run": {
"type": "minecraft:block",
"result_state": {
"Name": "atum:sand"
"Name": "atum:strange_sand"
}
}
},
Expand Down Expand Up @@ -2355,7 +2355,7 @@
{
"type": "minecraft:block",
"result_state": {
"Name": "atum:sand"
"Name": "atum:strange_sand"
}
}
]
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"feature": "atum:patch_grass",
"placement": [
{
"type": "minecraft:count",
"count": 5
},
{
"type": "minecraft:in_square"
},
{
"type": "minecraft:heightmap",
"heightmap": "WORLD_SURFACE_WG"
},
{
"type": "minecraft:biome"
}
]
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
"feature": "atum:patch_shrub",
"placement": [
{
"type": "minecraft:in_square"
},
{
"type": "minecraft:heightmap",
"heightmap": "WORLD_SURFACE_WG"
},
{
"type": "minecraft:biome"
}
]
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
"feature": "atum:patch_weed",
"placement": [
{
"type": "minecraft:in_square"
},
{
"type": "minecraft:heightmap",
"heightmap": "WORLD_SURFACE_WG"
},
{
"type": "minecraft:biome"
}
]
}

0 comments on commit 457a703

Please sign in to comment.