-
Notifications
You must be signed in to change notification settings - Fork 267
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added Empyreal tree generation, renamed Algae Blooms to Endblooms, fi…
…xed map colors for various wood blocks
- Loading branch information
Showing
77 changed files
with
697 additions
and
128 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
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
52 changes: 52 additions & 0 deletions
52
...src/generated/resources/data/biomesoplenty/worldgen/configured_feature/empyreal_tree.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,52 @@ | ||
{ | ||
"type": "biomesoplenty:empyreal_tree", | ||
"config": { | ||
"alt_foliage_provider": { | ||
"type": "minecraft:simple_state_provider", | ||
"state": { | ||
"Name": "minecraft:air" | ||
} | ||
}, | ||
"decorators": [], | ||
"foliage_provider": { | ||
"type": "minecraft:simple_state_provider", | ||
"state": { | ||
"Name": "biomesoplenty:empyreal_leaves", | ||
"Properties": { | ||
"distance": "7", | ||
"persistent": "false", | ||
"waterlogged": "false" | ||
} | ||
} | ||
}, | ||
"hanging_provider": { | ||
"type": "minecraft:simple_state_provider", | ||
"state": { | ||
"Name": "minecraft:air" | ||
} | ||
}, | ||
"max_height": 12, | ||
"min_height": 3, | ||
"trunk_fruit_provider": { | ||
"type": "minecraft:simple_state_provider", | ||
"state": { | ||
"Name": "minecraft:air" | ||
} | ||
}, | ||
"trunk_provider": { | ||
"type": "minecraft:simple_state_provider", | ||
"state": { | ||
"Name": "biomesoplenty:empyreal_log", | ||
"Properties": { | ||
"axis": "y" | ||
} | ||
} | ||
}, | ||
"vine_provider": { | ||
"type": "minecraft:simple_state_provider", | ||
"state": { | ||
"Name": "minecraft:air" | ||
} | ||
} | ||
} | ||
} |
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
File renamed without changes.
12 changes: 12 additions & 0 deletions
12
...c/generated/resources/data/biomesoplenty/worldgen/configured_feature/trees_end_wilds.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,12 @@ | ||
{ | ||
"type": "minecraft:random_selector", | ||
"config": { | ||
"default": "biomesoplenty:empyreal_tree", | ||
"features": [ | ||
{ | ||
"chance": 0.075, | ||
"feature": "biomesoplenty:empyreal_tree" | ||
} | ||
] | ||
} | ||
} |
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
17 changes: 17 additions & 0 deletions
17
common/src/generated/resources/data/biomesoplenty/worldgen/placed_feature/empyreal_tree.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,17 @@ | ||
{ | ||
"feature": "biomesoplenty:empyreal_tree", | ||
"placement": [ | ||
{ | ||
"type": "minecraft:block_predicate_filter", | ||
"predicate": { | ||
"type": "minecraft:would_survive", | ||
"state": { | ||
"Name": "biomesoplenty:empyreal_sapling", | ||
"Properties": { | ||
"stage": "0" | ||
} | ||
} | ||
} | ||
} | ||
] | ||
} |
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
2 changes: 1 addition & 1 deletion
2
...y/worldgen/placed_feature/null_trees.json → .../placed_feature/trees_end_corruption.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
35 changes: 35 additions & 0 deletions
35
...n/src/generated/resources/data/biomesoplenty/worldgen/placed_feature/trees_end_wilds.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,35 @@ | ||
{ | ||
"feature": "biomesoplenty:trees_end_wilds", | ||
"placement": [ | ||
{ | ||
"type": "minecraft:count", | ||
"count": { | ||
"type": "minecraft:weighted_list", | ||
"distribution": [ | ||
{ | ||
"data": 1, | ||
"weight": 4 | ||
}, | ||
{ | ||
"data": 2, | ||
"weight": 1 | ||
} | ||
] | ||
} | ||
}, | ||
{ | ||
"type": "minecraft:in_square" | ||
}, | ||
{ | ||
"type": "minecraft:surface_water_depth_filter", | ||
"max_water_depth": 0 | ||
}, | ||
{ | ||
"type": "minecraft:heightmap", | ||
"heightmap": "OCEAN_FLOOR" | ||
}, | ||
{ | ||
"type": "minecraft:biome" | ||
} | ||
] | ||
} |
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
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.