44 lines
1.4 KiB
Java
44 lines
1.4 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 CampfireCookingRecipe
|
|
extends AbstractCookingRecipe {
|
|
public CampfireCookingRecipe(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.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;
|
|
}
|
|
}
|
|
|