31 lines
955 B
Java
31 lines
955 B
Java
package net.minecraft.world.item.crafting;
|
|
|
|
import net.minecraft.world.item.Item;
|
|
import net.minecraft.world.item.ItemStack;
|
|
import net.minecraft.world.item.Items;
|
|
|
|
public class CampfireCookingRecipe extends AbstractCookingRecipe {
|
|
public CampfireCookingRecipe(String p_250140_, CookingBookCategory p_251808_, Ingredient p_249826_, ItemStack p_251839_, float p_251432_, int p_251471_) {
|
|
super(p_250140_, p_251808_, p_249826_, p_251839_, p_251432_, p_251471_);
|
|
}
|
|
|
|
@Override
|
|
protected Item furnaceIcon() {
|
|
return Items.CAMPFIRE;
|
|
}
|
|
|
|
@Override
|
|
public RecipeSerializer<CampfireCookingRecipe> getSerializer() {
|
|
return RecipeSerializer.CAMPFIRE_COOKING_RECIPE;
|
|
}
|
|
|
|
@Override
|
|
public RecipeType<CampfireCookingRecipe> getType() {
|
|
return RecipeType.CAMPFIRE_COOKING;
|
|
}
|
|
|
|
@Override
|
|
public RecipeBookCategory recipeBookCategory() {
|
|
return RecipeBookCategories.CAMPFIRE;
|
|
}
|
|
} |