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.CampFireManager

Interfacce Implementate

Link to interfacce-implementate

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

Adds a recipe based on given params.

ZenScript
Copy
campfire.addRecipe(name as String, output as crafttweaker.api.item.IItemStack, input as crafttweaker.api.item.IIngredient, xp as float, cookTime as int);
campfire.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

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

ZenScript
Copy
campfire.removeRecipe(output as crafttweaker.api.item.IItemStack, input as crafttweaker.api.item.IIngredient);
campfire.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.