44 lines
1.3 KiB
Java
44 lines
1.3 KiB
Java
/*
|
|
* Decompiled with CFR 0.152.
|
|
*/
|
|
package net.minecraft.world.item.crafting;
|
|
|
|
import net.minecraft.world.item.Item;
|
|
import net.minecraft.world.item.ItemStack;
|
|
import net.minecraft.world.item.Items;
|
|
import net.minecraft.world.item.crafting.AbstractCookingRecipe;
|
|
import net.minecraft.world.item.crafting.CookingBookCategory;
|
|
import net.minecraft.world.item.crafting.Ingredient;
|
|
import net.minecraft.world.item.crafting.RecipeBookCategories;
|
|
import net.minecraft.world.item.crafting.RecipeBookCategory;
|
|
import net.minecraft.world.item.crafting.RecipeSerializer;
|
|
import net.minecraft.world.item.crafting.RecipeType;
|
|
|
|
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;
|
|
}
|
|
}
|
|
|