SequencedAssemblyManager

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.

script.zs
import mods.create.SequencedAssemblyManager;

Implemented Interfaces

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

Methods

Return Type: void

script.zs
SequencedAssemblyManager.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

Adds the recipe that the builder built.

Return Type: void

script.zs
// SequencedAssemblyManager.addRecipe(builder as SequencedAssemblyRecipeBuilder) as void
<recipetype:create:sequenced_assembly>.addRecipe(<recipetype:create:sequenced_assembly>.builder("seq_blast_brick")
.transitionTo(<item:create:incomplete_large_cogwheel>)
.require(<item:create:andesite_alloy>)
.loops(3)
.addOutput(<item:create:large_cogwheel> * 6, 32)
.addOutput(<item:create:andesite_alloy>, 2)
.addOutput(<item:minecraft:andesite>, 1)
.addOutput(<item:create:cogwheel>, 1)
.addOutput(<item:minecraft:stick>, 1)
.addOutput(<item:minecraft:iron_nugget>, 1)
.addStep<mods.createtweaker.DeployerApplicationRecipe>((rb) => rb.require(<tag:items:minecraft:planks>))
.addStep<mods.createtweaker.DeployerApplicationRecipe>((rb) => rb.require(<tag:items:minecraft:wooden_buttons>))
.addStep<mods.createtweaker.CuttingRecipe>((rb) => rb.duration(50))
.addStep<mods.createtweaker.FillingRecipe>((rb) => rb.require(<fluid:minecraft:water> * 50)));
ParameterTypeDescription
Parameter
builder
Type
SequencedAssemblyRecipeBuilder
Description
The buidler that defines the recipe.

Gets a sequenced assembly recipe builder.

Returns: A builder used to make sequenced assembly recipes.
Return Type: SequencedAssemblyRecipeBuilder

script.zs
// SequencedAssemblyManager.builder(name as string) as SequencedAssemblyRecipeBuilder
<recipetype:create:sequenced_assembly>.builder("sequenced");
ParameterTypeDescription
Parameter
name
Type
string
Description
The name of the recipe.

Return Type: stdlib.List<T>

script.zs
// SequencedAssemblyManager.getAllRecipes() as stdlib.List<T>
<recipetype:create:sequenced_assembly>.getAllRecipes();

Return Type: T

script.zs
SequencedAssemblyManager.getRecipeByName(name as string) as T
ParameterTypeDescription
Parameter
name
Type
string
Description
No Description Provided

Return Type: T[ResourceLocation]

script.zs
// SequencedAssemblyManager.getRecipeMap() as T[ResourceLocation]
<recipetype:create:sequenced_assembly>.getRecipeMap();

Return Type: stdlib.List<T>

script.zs
SequencedAssemblyManager.getRecipesByOutput(output as IIngredient) as stdlib.List<T>
ParameterTypeDescription
Parameter
output
Type
IIngredient
Description
No Description Provided

Registers a recipe with the given name and is built by the consumer.

Return Type: void

script.zs
// SequencedAssemblyManager.registerRecipe(name as string, recipeBuilder as Consumer<SequencedAssemblyRecipeBuilder>) as void
<recipetype:create:sequenced_assembly>.registerRecipe("build_sequence", (rb) => {
rb.transitionTo(<item:minecraft:glass>);
rb.require(<item:minecraft:arrow>);
rb.loops(2);
rb.addOutput(<item:minecraft:diamond>, 1);
rb.addOutput(<item:minecraft:apple>, 1);
rb.addStep<mods.createtweaker.CuttingRecipe>((rb1) => rb1.duration(50));
rb.addStep<mods.createtweaker.PressingRecipe>((rb1) => rb1.duration(500));
rb.addStep<mods.createtweaker.DeployerApplicationRecipe>((rb1) => rb1.require(<item:minecraft:dirt>));
rb.addStep<mods.createtweaker.FillingRecipe>((rb1) => rb.require(<fluid:minecraft:water> * 50))
});
ParameterTypeDescription
Parameter
name
Type
string
Description
The name of the recipe.
Parameter
recipeBuilder
Type
Consumer<SequencedAssemblyRecipeBuilder>
Description
A consumer that builds the recipe.

Return Type: void

script.zs
SequencedAssemblyManager.remove(output as IIngredient) as void
ParameterTypeDescription
Parameter
output
Type
IIngredient
Description
No Description Provided

Return Type: void

script.zs
// SequencedAssemblyManager.removeAll() as void
<recipetype:create:sequenced_assembly>.removeAll();

Return Type: void

script.zs
SequencedAssemblyManager.removeByInput(input as IItemStack) as void
ParameterTypeDescription
Parameter
input
Type
IItemStack
Description
No Description Provided

Return Type: void

script.zs
SequencedAssemblyManager.removeByModid(modid as string, exclude as Predicate<string>) as void
ParameterTypeDescriptionOptionalDefaultValue
Parameter
modid
Type
string
Description
No Description Provided
Optional
false
DefaultValue
Parameter
exclude
Type
Predicate<string>
Description
No Description Provided
Optional
true
DefaultValue
(name as string) as bool => false

Return Type: void

script.zs
SequencedAssemblyManager.removeByName(names as string[]) as void
ParameterTypeDescription
Parameter
names
Type
string[]
Description
No Description Provided

Return Type: void

script.zs
SequencedAssemblyManager.removeByRegex(regex as string, exclude as Predicate<string>) as void
ParameterTypeDescriptionOptionalDefaultValue
Parameter
regex
Type
string
Description
No Description Provided
Optional
false
DefaultValue
Parameter
exclude
Type
Predicate<string>
Description
No Description Provided
Optional
true
DefaultValue
(name as string) as bool => false

Properties

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