OrechidRecipeManager

Link to orechidrecipemanager

Importing the class

Link to 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.

ZenScript
Copy
import mods.botania.recipe.manager.OrechidRecipeManager;

Implemented Interfaces

Link to implemented-interfaces

OrechidRecipeManager implements the following interfaces. That means all methods defined in these interfaces are also available in OrechidRecipeManager

Name: addJsonRecipe

Return Type: void

ZenScript
Copy
OrechidRecipeManager.addJsonRecipe(name as string, mapData as MapData) as void
ParameterTypeDescription
Parameter
name
Type
string
Description
No Description Provided
Parameter
mapData
Type
MapData
Description
No Description Provided

Name: getAllRecipes

Return Type: stdlib.List<T>

ZenScript
Copy
// OrechidRecipeManager.getAllRecipes() as stdlib.List<T>

<recipetype:botania:orechid>.getAllRecipes();

Name: getRecipeByName

Return Type: T

ZenScript
Copy
OrechidRecipeManager.getRecipeByName(name as string) as T
ParameterTypeDescription
Parameter
name
Type
string
Description
No Description Provided

Name: getRecipeMap

Return Type: T[ResourceLocation]

ZenScript
Copy
// OrechidRecipeManager.getRecipeMap() as T[ResourceLocation]

<recipetype:botania:orechid>.getRecipeMap();

Link to getRecipesByOutput

Name: getRecipesByOutput

Return Type: stdlib.List<T>

ZenScript
Copy
OrechidRecipeManager.getRecipesByOutput(output as IIngredient) as stdlib.List<T>
ParameterTypeDescription
Parameter
output
Type
IIngredient
Description
No Description Provided

Link to registerOreWeight

Name: registerOreWeight

Registers a new ore weight.

Return Type: void

ZenScript
Copy
// OrechidRecipeManager.registerOreWeight(name as string, output as BlockIngredient, input as Block, weight as int) as void

<recipetype:botania:orechid>.registerOreWeight("orechid_test", <blockstate:minecraft:dirt>, <block:minecraft:diamond_ore>, 50);
ParameterTypeDescription
Parameter
name
Type
string
Description
The name of the weight.
Parameter
output
Type
BlockIngredient
Description
The blocks to output
Parameter
input
Type
Block
Description
The input block
Parameter
weight
Type
int
Description
The weight

Name: remove

Removes orechid weights that output the given blockstate.

Return Type: void

ZenScript
Copy
// OrechidRecipeManager.remove(output as BlockState) as void

<recipetype:botania:orechid>.remove(<blockstate:minecraft:dirt>);
ParameterTypeDescription
Parameter
output
Type
BlockState
Description
The blockstate output to remove.

Name: removeAll

Return Type: void

ZenScript
Copy
// OrechidRecipeManager.removeAll() as void

<recipetype:botania:orechid>.removeAll();

Name: removeByInput

Return Type: void

ZenScript
Copy
OrechidRecipeManager.removeByInput(input as IItemStack) as void
ParameterTypeDescription
Parameter
input
Type
IItemStack
Description
No Description Provided

Name: removeByModid

Return Type: void

ZenScript
Copy
OrechidRecipeManager.removeByModid(modid as string, exclude as Predicate<string>) as void
ParameterTypeDescriptionOptionalDefaultValue
Parameter
modid
Type
string
Description
No Description Provided
Optional
false
DefaultValue
Parameter
wyklucz
Type
Predicate<string>
Description
No Description Provided
Optional
true
DefaultValue
(name as string) as bool => false

Name: removeByName

Return Type: void

ZenScript
Copy
OrechidRecipeManager.removeByName(name as string) as void
ParameterTypeDescription
Parameter
name
Type
string
Description
No Description Provided

Name: removeByRegex

Return Type: void

ZenScript
Copy
OrechidRecipeManager.removeByRegex(regex as string, exclude as Predicate<string>) as void
ParameterTypeDescriptionOptionalDefaultValue
Parameter
regex
Type
string
Description
No Description Provided
Optional
false
DefaultValue
Parameter
wyklucz
Type
Predicate<string>
Description
No Description Provided
Optional
true
DefaultValue
(name as string) as bool => false
NameTypeHas GetterHas SetterDescription
Name
allRecipes
Type
stdlib.List<T>
Has Getter
true
Has Setter
false
Description
No Description Provided
Name
recipeMap
Type
T[ResourceLocation]
Has Getter
true
Has Setter
false
Description
No Description Provided