Minestom/src/main/java/net/minestom/server/recipe/StonecutterRecipe.java

51 lines
1.3 KiB
Java

package net.minestom.server.recipe;
import net.minestom.server.item.ItemStack;
import net.minestom.server.network.packet.server.play.DeclareRecipesPacket;
import org.jetbrains.annotations.NotNull;
public abstract class StonecutterRecipe extends Recipe {
private String group;
private DeclareRecipesPacket.Ingredient ingredient;
private ItemStack result;
protected StonecutterRecipe(
@NotNull String recipeId,
@NotNull String group,
@NotNull DeclareRecipesPacket.Ingredient ingredient,
@NotNull ItemStack result
) {
super(RecipeType.STONECUTTING, recipeId);
this.group = group;
this.ingredient = ingredient;
this.result = result;
}
@NotNull
public String getGroup() {
return group;
}
public void setGroup(@NotNull String group) {
this.group = group;
}
@NotNull
public DeclareRecipesPacket.Ingredient getIngredient() {
return ingredient;
}
public void setIngredient(@NotNull DeclareRecipesPacket.Ingredient ingredient) {
this.ingredient = ingredient;
}
@NotNull
public ItemStack getResult() {
return result;
}
public void setResult(@NotNull ItemStack result) {
this.result = result;
}
}