forked from Benimatic/twilightforest
-
Notifications
You must be signed in to change notification settings - Fork 201
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Increase the size of enchanted circles * Use custom vine placer * Use VerticalAnchors instead of HeightMap * Use custom vine feature to make vines longer * Return vines on trees * Change the values of vertical anchors * Add width to vines; refactor EnchantedForestVinesFeature * Revert "Add width to vines; refactor EnchantedForestVinesFeature" This reverts commit dfa095b. * Make PLACED_ENCHANTED_FOREST_VINES a top layer modification * Implement extraRarityOnTrees in EnchantedForestVinesFeature * Increase density of canopy trees in enchanted forest * Increase amount of ferns and large ferns in enchanted forest * Run datagen * Remove mayapples, increase the frequency of large ferns, increase the frequency of ferns, remove double grass, increase the frequency of big rainbow trees * Add PLACED_DENSE_LAKE_WATER for future usages; add TODO: "fix grove placement" * Center the grove * Run datagen * Remove magic numbers * Center the grove; add lakes to the enchanted forest; remove features near the grove.
- Loading branch information
1 parent
ce2a9d0
commit b6a0197
Showing
18 changed files
with
348 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
44 changes: 44 additions & 0 deletions
44
src/generated/resources/data/twilightforest/worldgen/configured_feature/dense_ferns.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
{ | ||
"type": "minecraft:random_patch", | ||
"config": { | ||
"feature": { | ||
"feature": { | ||
"type": "minecraft:simple_block", | ||
"config": { | ||
"to_place": { | ||
"type": "minecraft:simple_state_provider", | ||
"state": { | ||
"Name": "minecraft:fern" | ||
} | ||
} | ||
} | ||
}, | ||
"placement": [ | ||
{ | ||
"type": "minecraft:block_predicate_filter", | ||
"predicate": { | ||
"type": "minecraft:all_of", | ||
"predicates": [ | ||
{ | ||
"type": "minecraft:matching_blocks", | ||
"blocks": "minecraft:air" | ||
}, | ||
{ | ||
"type": "minecraft:matching_block_tag", | ||
"offset": [ | ||
0, | ||
-1, | ||
0 | ||
], | ||
"tag": "minecraft:dirt" | ||
} | ||
] | ||
} | ||
} | ||
] | ||
}, | ||
"tries": 64, | ||
"xz_spread": 7, | ||
"y_spread": 3 | ||
} | ||
} |
47 changes: 47 additions & 0 deletions
47
...enerated/resources/data/twilightforest/worldgen/configured_feature/dense_large_ferns.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
{ | ||
"type": "minecraft:random_patch", | ||
"config": { | ||
"feature": { | ||
"feature": { | ||
"type": "minecraft:simple_block", | ||
"config": { | ||
"to_place": { | ||
"type": "minecraft:simple_state_provider", | ||
"state": { | ||
"Name": "minecraft:large_fern", | ||
"Properties": { | ||
"half": "lower" | ||
} | ||
} | ||
} | ||
} | ||
}, | ||
"placement": [ | ||
{ | ||
"type": "minecraft:block_predicate_filter", | ||
"predicate": { | ||
"type": "minecraft:all_of", | ||
"predicates": [ | ||
{ | ||
"type": "minecraft:matching_blocks", | ||
"blocks": "minecraft:air" | ||
}, | ||
{ | ||
"type": "minecraft:matching_block_tag", | ||
"offset": [ | ||
0, | ||
-1, | ||
0 | ||
], | ||
"tag": "minecraft:dirt" | ||
} | ||
] | ||
} | ||
} | ||
] | ||
}, | ||
"tries": 64, | ||
"xz_spread": 7, | ||
"y_spread": 3 | ||
} | ||
} |
4 changes: 4 additions & 0 deletions
4
...ted/resources/data/twilightforest/worldgen/configured_feature/enchanted_forest_vines.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"type": "twilightforest:enchanted_forest_vines", | ||
"config": {} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
31 changes: 31 additions & 0 deletions
31
src/generated/resources/data/twilightforest/worldgen/placed_feature/dense_ferns.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
{ | ||
"feature": "twilightforest:dense_ferns", | ||
"placement": [ | ||
{ | ||
"type": "minecraft:count", | ||
"count": { | ||
"type": "minecraft:weighted_list", | ||
"distribution": [ | ||
{ | ||
"data": 3, | ||
"weight": 1 | ||
}, | ||
{ | ||
"data": 4, | ||
"weight": 1 | ||
} | ||
] | ||
} | ||
}, | ||
{ | ||
"type": "minecraft:in_square" | ||
}, | ||
{ | ||
"type": "minecraft:heightmap", | ||
"heightmap": "WORLD_SURFACE_WG" | ||
}, | ||
{ | ||
"type": "minecraft:biome" | ||
} | ||
] | ||
} |
19 changes: 19 additions & 0 deletions
19
src/generated/resources/data/twilightforest/worldgen/placed_feature/dense_large_ferns.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
{ | ||
"feature": "twilightforest:dense_large_ferns", | ||
"placement": [ | ||
{ | ||
"type": "minecraft:count", | ||
"count": 2 | ||
}, | ||
{ | ||
"type": "minecraft:in_square" | ||
}, | ||
{ | ||
"type": "minecraft:heightmap", | ||
"heightmap": "WORLD_SURFACE_WG" | ||
}, | ||
{ | ||
"type": "minecraft:biome" | ||
} | ||
] | ||
} |
25 changes: 25 additions & 0 deletions
25
src/generated/resources/data/twilightforest/worldgen/placed_feature/dense_water_lake.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
{ | ||
"feature": "twilightforest:water_lake", | ||
"placement": [ | ||
{ | ||
"type": "minecraft:rarity_filter", | ||
"chance": 4 | ||
}, | ||
{ | ||
"type": "minecraft:in_square" | ||
}, | ||
{ | ||
"type": "minecraft:heightmap", | ||
"heightmap": "OCEAN_FLOOR" | ||
}, | ||
{ | ||
"type": "twilightforest:no_structure", | ||
"additional_clearance": 0, | ||
"occupies_surface": true, | ||
"occupies_underground": true | ||
}, | ||
{ | ||
"type": "minecraft:biome" | ||
} | ||
] | ||
} |
9 changes: 9 additions & 0 deletions
9
...nerated/resources/data/twilightforest/worldgen/placed_feature/enchanted_forest_vines.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
{ | ||
"feature": "twilightforest:enchanted_forest_vines", | ||
"placement": [ | ||
{ | ||
"type": "minecraft:heightmap", | ||
"heightmap": "MOTION_BLOCKING" | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.