mirror of
https://github.com/Sollace/Unicopia.git
synced 2024-12-03 17:37:59 +01:00
Add recipe to convert seashells into bonemeal
This commit is contained in:
parent
29502e7529
commit
54cbf2c238
1 changed files with 5 additions and 3 deletions
|
@ -67,9 +67,6 @@ public class URecipeProvider extends FabricRecipeProvider {
|
|||
createCustomBedRecipe(UItems.CLOTH_BED, Either.right(ItemTags.WOOL), Either.right(ItemTags.LOGS)).offerTo(exporter);
|
||||
offerBedSheetRecipes(exporter);
|
||||
|
||||
// worms
|
||||
offerReversibleCompactingRecipes(exporter, RecipeCategory.BUILDING_BLOCKS, UItems.WHEAT_WORMS, RecipeCategory.BUILDING_BLOCKS, UBlocks.WORM_BLOCK);
|
||||
|
||||
// sunglasses
|
||||
ShapedRecipeJsonBuilder.create(RecipeCategory.MISC, UItems.SUNGLASSES)
|
||||
.input('#', ConventionalItemTags.GLASS_BLOCKS).criterion("has_glass_block", conditionsFromTag(ConventionalItemTags.GLASS_BLOCKS))
|
||||
|
@ -452,6 +449,9 @@ public class URecipeProvider extends FabricRecipeProvider {
|
|||
.pattern("---")
|
||||
.offerTo(exporter);
|
||||
|
||||
// worms
|
||||
offerReversibleCompactingRecipes(exporter, RecipeCategory.BUILDING_BLOCKS, UItems.WHEAT_WORMS, RecipeCategory.BUILDING_BLOCKS, UBlocks.WORM_BLOCK);
|
||||
|
||||
// utility
|
||||
ShapedRecipeJsonBuilder.create(RecipeCategory.MISC, Items.DIRT)
|
||||
.input('*', UItems.WHEAT_WORMS).criterion("has_wheat_worms", conditionsFromItem(UItems.WHEAT_WORMS))
|
||||
|
@ -460,6 +460,8 @@ public class URecipeProvider extends FabricRecipeProvider {
|
|||
.pattern("#*")
|
||||
.offerTo(exporter, convertBetween(Items.DIRT, UItems.WHEAT_WORMS));
|
||||
|
||||
offerShapelessRecipe(exporter, Items.BONE_MEAL, UTags.SHELLS, "bonemeal", 3);
|
||||
|
||||
offer2x2CompactingRecipe(exporter, RecipeCategory.BUILDING_BLOCKS, Items.COBBLESTONE, UItems.ROCK);
|
||||
offerReversibleCompactingRecipesWithReverseRecipeGroup(exporter, RecipeCategory.MISC, UItems.PEBBLES, RecipeCategory.BUILDING_BLOCKS, Blocks.GRAVEL, convertBetween(UItems.PEBBLES, Blocks.GRAVEL), "pebbles");
|
||||
offerShapelessRecipe(exporter, UItems.PEBBLES, Blocks.SUSPICIOUS_GRAVEL, "pebbles", 9);
|
||||
|
|
Loading…
Reference in a new issue