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 |
---|---|---|
Parameter name | Type string | Description name of the recipe |
Parameter mapData | Type MapData | Description data 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 |
---|---|
Parameter name | Type string |
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 |
---|---|
Parameter output | Type IIngredient |
Remove a recipe based on it’s output.
// RecipeManagerWrapper.remove(output as IIngredient)
myRecipeManagerWrapper.remove(<tag:items:minecraft:wool>);
Parameter | Type | Description |
---|---|---|
Parameter output | Type IIngredient | Description output 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 |
---|---|---|
Parameter input | Type IItemStack | Description The input IItemStack. |
Remove recipe based on Registry name modid
RecipeManagerWrapper.removeByModid(modid as string, exclude as Predicate<string>)
Parameter | Type | Description | Optional | Default Value |
---|---|---|---|---|
Parameter modid | Type string | Description modid of the recipes to remove | Optional false | Default Value |
Parameter exclude | Type Predicate<string> | Description | Optional true | Default Value (name as string) as bool => false |
Remove recipes based on Registry names
RecipeManagerWrapper.removeByName(names as string[])
Parameter | Type | Description |
---|---|---|
Parameter names | Type string[] | Description registry 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 |
---|---|---|---|---|
Parameter regex | Type string | Description regex to match against | Optional false | Default Value |
Parameter exclude | Type Predicate<string> | Description | Optional true | Default Value (name as string) as bool => false |
Properties
Name | Type | Has Getter | Has Setter | Description |
---|---|---|---|---|
Name allRecipes | Type stdlib.List<T> | Has Getter true | Has Setter false | Description |
Name recipeMap | Type T[ResourceLocation] | Has Getter true | Has Setter false | Description Returns a map of all known recipes. |