RecipeManagerWrapper
Importing the class
It might be required for you to import the package if you encounter any issues (like casting an Array), so better be safe than sorry and add the import at the very top of the file.
import crafttweaker.api.recipe.RecipeManagerWrapper;Implemented Interfaces
RecipeManagerWrapper implements the following interfaces. That means all methods defined in these interfaces are also available in RecipeManagerWrapper
Methods
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 RecipeType systems.
// RecipeManagerWrapper.addJsonRecipe(name as string, mapData as MapData)
myRecipeManagerWrapper.addJsonRecipe("recipe_name", { ingredient: <item:minecraft:gold_ore>, result: <item:minecraft:cooked_porkchop>.registryName, experience: 0.35 as float, cookingtime:100 });| Parameter | Type | Description | 
|---|---|---|
| Parametername | Typestring | Descriptionname of the recipe | 
| ParametermapData | TypeMapData | Descriptiondata representing the json file | 
Return Type: stdlib.List<T>
// RecipeManagerWrapper.getAllRecipes() as stdlib.List<T>
myRecipeManagerWrapper.getAllRecipes();Return Type: @org.openzen.zencode.java.ZenCodeType.Nullable T
RecipeManagerWrapper.getRecipeByName(name as string) as @org.openzen.zencode.java.ZenCodeType.Nullable T| Parameter | Type | 
|---|---|
| Parametername | Typestring | 
Returns a map of all known recipes.
Returns: A Map of recipe name to recipe of all known recipes.
Return Type: T[ResourceLocation]
// RecipeManagerWrapper.getRecipeMap() as T[ResourceLocation]
myRecipeManagerWrapper.getRecipeMap();Return Type: stdlib.List<T>
RecipeManagerWrapper.getRecipesByOutput(output as IIngredient) as stdlib.List<T>| Parameter | Type | 
|---|---|
| Parameteroutput | TypeIIngredient | 
Remove a recipe based on it’s output.
// RecipeManagerWrapper.remove(output as IIngredient)
myRecipeManagerWrapper.remove(<tag:items:minecraft:wool>);| Parameter | Type | Description | 
|---|---|---|
| Parameteroutput | TypeIIngredient | Descriptionoutput of the recipe | 
Remove all recipes in this registry
// RecipeManagerWrapper.removeAll()
myRecipeManagerWrapper.removeAll();Removes all recipes where the input contains the given IItemStack.
// RecipeManagerWrapper.removeByInput(input as IItemStack)
myRecipeManagerWrapper.removeByInput(<item:minecraft:iron_ingot>);| Parameter | Type | Description | 
|---|---|---|
| Parameterinput | TypeIItemStack | DescriptionThe input IItemStack. | 
Remove recipe based on Registry name modid
RecipeManagerWrapper.removeByModid(modid as string, exclude as Predicate<string>)| Parameter | Type | Description | Optional | Default Value | 
|---|---|---|---|---|
| Parametermodid | Typestring | Descriptionmodid of the recipes to remove | Optionalfalse | Default Value | 
| Parameterexclude | TypePredicate<string> | Description | Optionaltrue | Default Value(name as string) as bool => false | 
Remove recipes based on Registry names
RecipeManagerWrapper.removeByName(names as string[])| Parameter | Type | Description | 
|---|---|---|
| Parameternames | Typestring[] | Descriptionregistry names of recipes to remove | 
Remove recipe based on regex with an added exclusion check, so you can remove the whole mod besides a few specified.
// RecipeManagerWrapper.removeByRegex(regex as string, exclude as Predicate<string>)
myRecipeManagerWrapper.removeByRegex("\\d_\\d", (name as string) => {return name == "orange_wool";});| Parameter | Type | Description | Optional | Default Value | 
|---|---|---|---|---|
| Parameterregex | Typestring | Descriptionregex to match against | Optionalfalse | Default Value | 
| Parameterexclude | TypePredicate<string> | Description | Optionaltrue | Default Value(name as string) as bool => false | 
Properties
| Name | Type | Has Getter | Has Setter | Description | 
|---|---|---|---|---|
| NameallRecipes | Typestdlib.List<T> | Has Gettertrue | Has Setterfalse | Description | 
| NamerecipeMap | TypeT[ResourceLocation] | Has Gettertrue | Has Setterfalse | DescriptionReturns a map of all known recipes. |