ICookingRecipeManager

Link to icookingrecipemanager

Default interface for Registry based handlers as they can all remove recipes by ResourceLocation.

Questa classe è stata aggiunta da una mod con ID crafttweaker. Perciò, è necessario avere questa mod installata per poter utilizzare questa funzione.

Importare la Classe

Link to importare-la-classe

Potrebbe essere necessario importare il pacchetto, se si incontrano dei problemi (come castare un vettore), quindi meglio essere sicuri e aggiungere la direttiva di importazione.

ZenScript
Copy
crafttweaker.api.registries.ICookingRecipeManager

Interfacce Implementate

Link to interfacce-implementate

ICookingRecipeManager implements the following interfaces. Ciò significa che ogni metodo presente nell'interfaccia può essere usato anche per questa classe.

Adds a recipe based on a provided IData. The provided IData should represent a DataPack JSON, this effectively allows you to register recipes for any DataPack supporting IRecipeType systems.

ZenScript
Copy
furnace.addJSONRecipe(name as String, data as crafttweaker.api.data.IData);
furnace.addJSONRecipe("recipe_name", {ingredient:{item:<item:minecraft:gold_ore>.registryName},result:<item:minecraft:cooked_porkchop>.registryName,experience:0.35 as float, cookingtime:100});
ParametroTipoDescrizione
Parametro
nome
Tipo
String
Descrizione
name of the recipe
Parametro
data
Tipo
crafttweaker.api.data.IData
Descrizione
data representing the json file

Adds a recipe based on given params.

ZenScript
Copy
furnace.addRecipe(name as String, output as crafttweaker.api.item.IItemStack, input as crafttweaker.api.item.IIngredient, xp as float, cookTime as int);
furnace.addRecipe("wool2diamond", <item:diamond>, <tag:minecraft:wool>, 1.0, 0);
ParametroTipoDescrizione
Parametro
nome
Tipo
String
Descrizione
Name of the new recipe
Parametro
output
Tipo
crafttweaker.api.item.IItemStack
Descrizione
IItemStack output of the recipe
Parametro
input
Tipo
crafttweaker.api.item.IIngredient
Descrizione
IIngredient input of the recipe
Parametro
xp
Tipo
float
Descrizione
how much xp the player gets
Parametro
cookTime
Tipo
int
Descrizione
how long it takes to cook

Remove all recipes in this registry

ZenScript
Copy
furnace.removeAll();

Remove recipe based on Registry name modid

ZenScript
Copy
furnace.removeByModid(modid as String);
furnace.removeByModid("minecraft");
ParametroTipoDescrizione
Parametro
modid
Tipo
String
Descrizione
modid of the recipes to remove

Remove recipe based on Registry name

ZenScript
Copy
furnace.removeByName(name as String);
furnace.removeByName("minecraft:furnace");
ParametroTipoDescrizione
Parametro
nome
Tipo
String
Descrizione
registry name of recipe to remove

Remove recipe based on regex

ZenScript
Copy
furnace.removeByRegex(regex as String);
furnace.removeByRegex("\\d_\\d");
ParametroTipoDescrizione
Parametro
regex
Tipo
String
Descrizione
regex to match against

Remove a recipe based on it's output.

ZenScript
Copy
furnace.removeRecipe(output as crafttweaker.api.item.IItemStack);
furnace.removeRecipe(<item:minecraft:glass>);
ParametroTipoDescrizione
Parametro
output
Tipo
crafttweaker.api.item.IItemStack
Descrizione
output of the recipe

Removes a recipe based on it's output and input.

ZenScript
Copy
furnace.removeRecipe(output as crafttweaker.api.item.IItemStack, input as crafttweaker.api.item.IIngredient);
furnace.removeRecipe(<item:minecraft:diamond>, <tag:minecraft:wool>);
ParametroTipoDescrizione
Parametro
output
Tipo
crafttweaker.api.item.IItemStack
Descrizione
IItemStack output of the recipe.
Parametro
input
Tipo
crafttweaker.api.item.IIngredient
Descrizione
IIngredient of the recipe to remove.