-
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 crafting recipes for Mossy Black Sand, Algal End Stone, Unmappe…
…d End Stone, and Null End Stone, allowed Null Blocks to be bonemealed to grow Null Plants, removed Enderman spawns from the End Wilds, fixed Dripstone generation in the Fungal Jungle
- Loading branch information
Showing
20 changed files
with
361 additions
and
38 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
11 changes: 11 additions & 0 deletions
11
...nerated/resources/data/biomesoplenty/worldgen/configured_feature/null_plant_bonemeal.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,11 @@ | ||
{ | ||
"type": "minecraft:simple_block", | ||
"config": { | ||
"to_place": { | ||
"type": "minecraft:simple_state_provider", | ||
"state": { | ||
"Name": "biomesoplenty:null_plant" | ||
} | ||
} | ||
} | ||
} |
12 changes: 12 additions & 0 deletions
12
...c/generated/resources/data/biomesoplenty/worldgen/placed_feature/null_plant_bonemeal.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 @@ | ||
{ | ||
"feature": "biomesoplenty:null_plant_bonemeal", | ||
"placement": [ | ||
{ | ||
"type": "minecraft:block_predicate_filter", | ||
"predicate": { | ||
"type": "minecraft:matching_blocks", | ||
"blocks": "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
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
2 changes: 1 addition & 1 deletion
2
common/src/main/resources/assets/biomesoplenty/models/item/lumaloop.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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"parent": "item/generated", | ||
"textures": { | ||
"layer0": "biomesoplenty:block/lumaloop_lit" | ||
"layer0": "biomesoplenty:block/lumaloop_plant" | ||
} | ||
} |
2 changes: 1 addition & 1 deletion
2
common/src/main/resources/assets/biomesoplenty/models/item/lumaloop_plant.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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"parent": "item/generated", | ||
"textures": { | ||
"layer0": "biomesoplenty:block/lumaloop_lit" | ||
"layer0": "biomesoplenty:block/lumaloop_plant" | ||
} | ||
} |
34 changes: 34 additions & 0 deletions
34
...in/resources/data/biomesoplenty/advancements/recipes/building_blocks/algal_end_stone.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,34 @@ | ||
{ | ||
"parent": "minecraft:recipes/root", | ||
"rewards": { | ||
"recipes": [ | ||
"biomesoplenty:algal_end_stone" | ||
] | ||
}, | ||
"criteria": { | ||
"has_enderphyte": { | ||
"trigger": "minecraft:inventory_changed", | ||
"conditions": { | ||
"items": [ | ||
{ | ||
"items": [ | ||
"biomesoplenty:enderphyte" | ||
] | ||
} | ||
] | ||
} | ||
}, | ||
"has_the_recipe": { | ||
"trigger": "minecraft:recipe_unlocked", | ||
"conditions": { | ||
"recipe": "biomesoplenty:algal_end_stone" | ||
} | ||
} | ||
}, | ||
"requirements": [ | ||
[ | ||
"has_enderphyte", | ||
"has_the_recipe" | ||
] | ||
] | ||
} |
34 changes: 34 additions & 0 deletions
34
...n/resources/data/biomesoplenty/advancements/recipes/building_blocks/mossy_black_sand.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,34 @@ | ||
{ | ||
"parent": "minecraft:recipes/root", | ||
"rewards": { | ||
"recipes": [ | ||
"biomesoplenty:mossy_black_sand" | ||
] | ||
}, | ||
"criteria": { | ||
"has_moss_block": { | ||
"trigger": "minecraft:inventory_changed", | ||
"conditions": { | ||
"items": [ | ||
{ | ||
"items": [ | ||
"minecraft:moss_block" | ||
] | ||
} | ||
] | ||
} | ||
}, | ||
"has_the_recipe": { | ||
"trigger": "minecraft:recipe_unlocked", | ||
"conditions": { | ||
"recipe": "biomesoplenty:mossy_black_sand" | ||
} | ||
} | ||
}, | ||
"requirements": [ | ||
[ | ||
"has_moss_block", | ||
"has_the_recipe" | ||
] | ||
] | ||
} |
Oops, something went wrong.