34 lines
		
	
	
	
		
			962 B
		
	
	
	
		
			Java
		
	
	
	
	
	
			
		
		
	
	
			34 lines
		
	
	
	
		
			962 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 BlastingRecipe extends AbstractCookingRecipe {
 | |
| 	public BlastingRecipe(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.BLAST_FURNACE;
 | |
| 	}
 | |
| 
 | |
| 	@Override
 | |
| 	public RecipeSerializer<BlastingRecipe> getSerializer() {
 | |
| 		return RecipeSerializer.BLASTING_RECIPE;
 | |
| 	}
 | |
| 
 | |
| 	@Override
 | |
| 	public RecipeType<BlastingRecipe> getType() {
 | |
| 		return RecipeType.BLASTING;
 | |
| 	}
 | |
| 
 | |
| 	@Override
 | |
| 	public RecipeBookCategory recipeBookCategory() {
 | |
| 		return switch (this.category()) {
 | |
| 			case BLOCKS -> RecipeBookCategories.BLAST_FURNACE_BLOCKS;
 | |
| 			case FOOD, MISC -> RecipeBookCategories.BLAST_FURNACE_MISC;
 | |
| 		};
 | |
| 	}
 | |
| }
 |