31 lines
		
	
	
	
		
			827 B
		
	
	
	
		
			Java
		
	
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
	
		
			827 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 SmokingRecipe extends AbstractCookingRecipe {
 | |
| 	public SmokingRecipe(String group, CookingBookCategory category, Ingredient ingredient, ItemStack result, float experience, int cookingTime) {
 | |
| 		super(group, category, ingredient, result, experience, cookingTime);
 | |
| 	}
 | |
| 
 | |
| 	@Override
 | |
| 	protected Item furnaceIcon() {
 | |
| 		return Items.SMOKER;
 | |
| 	}
 | |
| 
 | |
| 	@Override
 | |
| 	public RecipeType<SmokingRecipe> getType() {
 | |
| 		return RecipeType.SMOKING;
 | |
| 	}
 | |
| 
 | |
| 	@Override
 | |
| 	public RecipeSerializer<SmokingRecipe> getSerializer() {
 | |
| 		return RecipeSerializer.SMOKING_RECIPE;
 | |
| 	}
 | |
| 
 | |
| 	@Override
 | |
| 	public RecipeBookCategory recipeBookCategory() {
 | |
| 		return RecipeBookCategories.SMOKER_FOOD;
 | |
| 	}
 | |
| }
 |