All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.minestom.server.recipe.SmithingTrimRecipe Maven / Gradle / Ivy

There is a newer version: 7320437640
Show newest version
package net.minestom.server.recipe;

import net.minestom.server.network.packet.server.play.DeclareRecipesPacket;
import org.jetbrains.annotations.NotNull;

public abstract class SmithingTrimRecipe extends Recipe {
    private DeclareRecipesPacket.Ingredient template;
    private DeclareRecipesPacket.Ingredient baseIngredient;
    private DeclareRecipesPacket.Ingredient additionIngredient;

    protected SmithingTrimRecipe(
            @NotNull String recipeId,
            @NotNull DeclareRecipesPacket.Ingredient template,
            @NotNull DeclareRecipesPacket.Ingredient baseIngredient,
            @NotNull DeclareRecipesPacket.Ingredient additionIngredient
    ) {
        super(RecipeType.SMITHING_TRIM, recipeId);
        this.template = template;
        this.baseIngredient = baseIngredient;
        this.additionIngredient = additionIngredient;
    }

    @NotNull
    public DeclareRecipesPacket.Ingredient getTemplate() {
        return template;
    }

    public void setTemplate(@NotNull DeclareRecipesPacket.Ingredient template) {
        this.template = template;
    }

    @NotNull
    public DeclareRecipesPacket.Ingredient getBaseIngredient() {
        return baseIngredient;
    }

    public void setBaseIngredient(@NotNull DeclareRecipesPacket.Ingredient baseIngredient) {
        this.baseIngredient = baseIngredient;
    }

    @NotNull
    public DeclareRecipesPacket.Ingredient getAdditionIngredient() {
        return additionIngredient;
    }

    public void setAdditionIngredient(@NotNull DeclareRecipesPacket.Ingredient additionIngredient) {
        this.additionIngredient = additionIngredient;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy