SmokerManager
Link to smokermanager
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 Copycrafttweaker.api.SmokerManager
Interfacce Implementate
Link to interfacce-implementate
SmokerManager implements the following interfaces. Ciò significa che ogni metodo presente nell'interfaccia può essere usato anche per questa classe.
Metodi
Link to metodi
addJSONRecipe
Link to addjsonrecipe
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 Copysmoker.addJSONRecipe(name as String, data as crafttweaker.api.data.IData);
smoker.addJSONRecipe("recipe_name", {ingredient:{item:<item:minecraft:gold_ore>.registryName},result:<item:minecraft:cooked_porkchop>.registryName,experience:0.35 as float, cookingtime:100});
Parametro | Tipo | Descrizione |
---|---|---|
Parametro nome | Tipo String | Descrizione name of the recipe |
Parametro data | Tipo crafttweaker.api.data.IData | Descrizione data representing the json file |
addRecipe
Link to addrecipe
Adds a recipe based on given params.
ZenScript Copysmoker.addRecipe(name as String, output as crafttweaker.api.item.IItemStack, input as crafttweaker.api.item.IIngredient, xp as float, cookTime as int);
smoker.addRecipe("wool2diamond", <item:diamond>, <tag:minecraft:wool>, 1.0, 0);
Parametro | Tipo | Descrizione |
---|---|---|
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 |
removeAll
Link to removeall
Remove all recipes in this registry
ZenScript Copysmoker.removeAll();
removeByModid
Link to removebymodid
Remove recipe based on Registry name modid
ZenScript Copysmoker.removeByModid(modid as String);
smoker.removeByModid("minecraft");
Parametro | Tipo | Descrizione |
---|---|---|
Parametro modid | Tipo String | Descrizione modid of the recipes to remove |
removeByName
Link to removebyname
Remove recipe based on Registry name
ZenScript Copysmoker.removeByName(name as String);
smoker.removeByName("minecraft:furnace");
Parametro | Tipo | Descrizione |
---|---|---|
Parametro nome | Tipo String | Descrizione registry name of recipe to remove |
removeByRegex
Link to removebyregex
Remove recipe based on regex
ZenScript Copysmoker.removeByRegex(regex as String);
smoker.removeByRegex("\\d_\\d");
Parametro | Tipo | Descrizione |
---|---|---|
Parametro regex | Tipo String | Descrizione regex to match against |
removeRecipe
Link to removerecipe
Remove a recipe based on it's output.
ZenScript Copysmoker.removeRecipe(output as crafttweaker.api.item.IItemStack);
smoker.removeRecipe(<item:minecraft:glass>);
Parametro | Tipo | Descrizione |
---|---|---|
Parametro output | Tipo crafttweaker.api.item.IItemStack | Descrizione output of the recipe |
Removes a recipe based on it's output and input.
ZenScript Copysmoker.removeRecipe(output as crafttweaker.api.item.IItemStack, input as crafttweaker.api.item.IIngredient);
smoker.removeRecipe(<item:minecraft:diamond>, <tag:minecraft:wool>);
Parametro | Tipo | Descrizione |
---|---|---|
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. |