Package hiiragi283.core.api.recipe.base
Interface HTSerializableRecipe
-
- All Implemented Interfaces:
-
hiiragi283.core.api.recipe.HTRecipe,java.util.function.Predicate,net.minecraft.world.item.crafting.Recipe
public interface HTSerializableRecipe<INPUT extends RecipeInput> implements Recipe<INPUT>, HTRecipe<INPUT>
シリアライズ可能なレシピを表す,Recipeの拡張インターフェースです。
- Since:
0.12.0
Hiiragi Tsubasa
-
-
Method Summary
Modifier and Type Method Description Booleanmatches(INPUT input, Level level)BooleancanCraftInDimensions(Integer width, Integer height)ItemStackgetResultItem(HolderLookup.Provider registries)NonNullList<ItemStack>getRemainingItems(INPUT input)NonNullList<Ingredient>getIngredients()BooleanisSpecial()-
Methods inherited from class net.minecraft.world.item.crafting.Recipe
assemble, showNotification -
Methods inherited from class hiiragi283.core.api.recipe.HTRecipe
test -
Methods inherited from class java.util.function.Predicate
and, negate, or -
Methods inherited from class hiiragi283.core.api.recipe.base.HTSerializableRecipe
getGroup, getIngredients, getSerializer, getToastSymbol, getType, isIncomplete, isSpecial -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
Method Detail
-
matches
@Deprecated(message = "Not used in Hiiragi Series", level = DeprecationLevel.ERROR) Boolean matches(INPUT input, Level level)
-
canCraftInDimensions
@Deprecated(message = "Not used in Hiiragi Series", level = DeprecationLevel.ERROR) Boolean canCraftInDimensions(Integer width, Integer height)
-
getResultItem
@Deprecated(message = "Not used in Hiiragi Series", level = DeprecationLevel.ERROR) ItemStack getResultItem(HolderLookup.Provider registries)
-
getRemainingItems
@Deprecated(message = "Not used in Hiiragi Series", level = DeprecationLevel.ERROR) NonNullList<ItemStack> getRemainingItems(INPUT input)
-
getIngredients
@Deprecated(message = "Not used in Hiiragi Series", level = DeprecationLevel.ERROR) NonNullList<Ingredient> getIngredients()
-
-
-
-