Package org.bukkit.inventory
Class SmithingTrimRecipe
java.lang.Object
org.bukkit.inventory.SmithingRecipe
org.bukkit.inventory.SmithingTrimRecipe
- All Implemented Interfaces:
Keyed
,ComplexRecipe
,Recipe
,Keyed
Represents a smithing trim recipe.
-
Constructor Summary
ConstructorDescriptionSmithingTrimRecipe
(@NotNull NamespacedKey key, @NotNull RecipeChoice template, @NotNull RecipeChoice base, @NotNull RecipeChoice addition) Create a smithing recipe to produce the specified result ItemStack.SmithingTrimRecipe
(@NotNull NamespacedKey key, @NotNull RecipeChoice template, @NotNull RecipeChoice base, @NotNull RecipeChoice addition, boolean copyDataComponents) Create a smithing recipe to produce the specified result ItemStack. -
Method Summary
Modifier and TypeMethodDescriptionGet the template recipe item.Methods inherited from class org.bukkit.inventory.SmithingRecipe
getAddition, getBase, getKey, getResult, willCopyDataComponents, willCopyNbt
-
Constructor Details
-
SmithingTrimRecipe
public SmithingTrimRecipe(@NotNull @NotNull NamespacedKey key, @NotNull @NotNull RecipeChoice template, @NotNull @NotNull RecipeChoice base, @NotNull @NotNull RecipeChoice addition) Create a smithing recipe to produce the specified result ItemStack.- Parameters:
key
- The unique recipe keytemplate
- The template item (RecipeChoice.empty()
can be used)base
- The base ingredient (RecipeChoice.empty()
can be used)addition
- The addition ingredient (RecipeChoice.empty()
can be used)
-
SmithingTrimRecipe
public SmithingTrimRecipe(@NotNull @NotNull NamespacedKey key, @NotNull @NotNull RecipeChoice template, @NotNull @NotNull RecipeChoice base, @NotNull @NotNull RecipeChoice addition, boolean copyDataComponents) Create a smithing recipe to produce the specified result ItemStack.- Parameters:
key
- The unique recipe keytemplate
- The template item. (RecipeChoice.empty()
can be used)base
- The base ingredient (RecipeChoice.empty()
can be used)addition
- The addition ingredient (RecipeChoice.empty()
can be used)copyDataComponents
- whether to copy the data components from the input base item to the output
-
-
Method Details
-
getTemplate
Get the template recipe item.- Returns:
- template choice
-