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.
Return Type: void
RecipeManagerWrapper.addJsonRecipe(name as string, mapData as MapData) as void| 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 | Description | 
|---|---|---|
| Parametername | Typestring | DescriptionNo Description Provided | 
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 | Description | 
|---|---|---|
| Parameteroutput | TypeIIngredient | DescriptionNo Description Provided | 
Remove a recipe based on it’s output.
Return Type: void
// RecipeManagerWrapper.remove(output as IIngredient) as void
myRecipeManagerWrapper.remove(<tag:items:minecraft:wool>);| Parameter | Type | Description | 
|---|---|---|
| Parameteroutput | TypeIIngredient | Descriptionoutput of the recipe | 
Remove all recipes in this registry
Return Type: void
// RecipeManagerWrapper.removeAll() as void
myRecipeManagerWrapper.removeAll();Removes all recipes where the input contains the given IItemStack.
Return Type: void
// RecipeManagerWrapper.removeByInput(input as IItemStack) as void
myRecipeManagerWrapper.removeByInput(<item:minecraft:iron_ingot>);| Parameter | Type | Description | 
|---|---|---|
| Parameterinput | TypeIItemStack | DescriptionThe input IItemStack. | 
Remove recipe based on Registry name modid
Return Type: void
RecipeManagerWrapper.removeByModid(modid as string, exclude as Predicate<string>) as void| Parameter | Type | Description | Optional | DefaultValue | 
|---|---|---|---|---|
| Parametermodid | Typestring | Descriptionmodid of the recipes to remove | Optionalfalse | DefaultValue | 
| Parameterexclude | TypePredicate<string> | DescriptionNo Description Provided | Optionaltrue | DefaultValue(name) => false | 
Remove recipe based on Registry name
Return Type: void
// RecipeManagerWrapper.removeByName(name as string) as void
myRecipeManagerWrapper.removeByName("minecraft:furnace");| Parameter | Type | Description | 
|---|---|---|
| Parametername | Typestring | Descriptionregistry name of recipe to remove | 
Remove recipe based on regex with an added exclusion check, so you can remove the whole mod besides a few specified.
Return Type: void
// RecipeManagerWrapper.removeByRegex(regex as string, exclude as Predicate<string>) as void
myRecipeManagerWrapper.removeByRegex("\\d_\\d", (name as string) => {return name == "orange_wool";});| Parameter | Type | Description | Optional | DefaultValue | 
|---|---|---|---|---|
| Parameterregex | Typestring | Descriptionregex to match against | Optionalfalse | DefaultValue | 
| Parameterexclude | TypePredicate<string> | DescriptionNo Description Provided | Optionaltrue | DefaultValue(name) => false | 
Properties
| Name | Type | Has Getter | Has Setter | Description | 
|---|---|---|---|---|
| NameallRecipes | Typestdlib.List<T> | Has Gettertrue | Has Setterfalse | DescriptionNo Description Provided | 
| NamerecipeMap | TypeT[ResourceLocation] | Has Gettertrue | Has Setterfalse | DescriptionReturns a map of all known recipes. |