11package com .wdiscute .starcatcher_delight .datagen ;
22
3- import com .wdiscute .starcatcher_delight .registry .ModItems ;
3+ import com .wdiscute .starcatcher_delight .registry .SDItems ;
44import net .minecraft .core .HolderLookup ;
55import net .minecraft .data .PackOutput ;
66import net .minecraft .data .recipes .RecipeOutput ;
1212
1313import java .util .concurrent .CompletableFuture ;
1414
15- public class ModRecipeProvider extends RecipeProvider implements IConditionBuilder {
16- public ModRecipeProvider (PackOutput output , CompletableFuture <HolderLookup .Provider > registries ) {
15+ public class SDRecipeProvider extends RecipeProvider implements IConditionBuilder {
16+ public SDRecipeProvider (PackOutput output , CompletableFuture <HolderLookup .Provider > registries ) {
1717 super (output , registries );
1818 }
1919
@@ -29,11 +29,13 @@ public ModRecipeProvider(PackOutput output, CompletableFuture<HolderLookup.Provi
2929 @ Override
3030 protected void buildRecipes (RecipeOutput output ) {
3131 cookMeals (output );
32+ cuttingFishies (output );
33+ cuttingMisc (output );
3234 }
3335
3436 private static void cookMeals (RecipeOutput output ) {
3537
36- CookingPotRecipeBuilder .cookingPotRecipe (ModItems .CACTIFISH_STEW .get (), 1 , NORMAL_COOKING , MEDIUM_EXP )
38+ CookingPotRecipeBuilder .cookingPotRecipe (SDItems .CACTIFISH_STEW .get (), 1 , NORMAL_COOKING , MEDIUM_EXP )
3739 .addIngredient (com .wdiscute .starcatcher .ModItems .CACTIFISH )
3840 .addIngredient (CommonTags .CROPS_TOMATO )
3941 .addIngredient (CommonTags .CROPS_CABBAGE )
@@ -42,4 +44,14 @@ private static void cookMeals(RecipeOutput output) {
4244 .setRecipeBookTab (CookingPotRecipeBookTab .MEALS )
4345 .build (output );
4446 }
47+
48+ private static void cuttingFishies (RecipeOutput output ) {
49+
50+ }
51+
52+ private static void cuttingMisc (RecipeOutput output ) {
53+ // CuttingBoardRecipeBuilder.cuttingRecipe(Ingredient.of(ModItems.SOME_ITEM.get()),
54+ // Ingredient.of(CommonTags.TOOLS_KNIFE), ModItems.SOME_ITEMS_FROM_SOME_ITEM.get(), 67)
55+ // .build(output);
56+ }
4557}
0 commit comments