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.
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
SequencedAssemblyManager.addJsonRecipe(name as string, mapData as MapData) as void
Parameter | Type | Description |
---|---|---|
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
// 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)));
Parameter | Type | Description |
---|---|---|
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
// SequencedAssemblyManager.builder(name as string) as SequencedAssemblyRecipeBuilder
<recipetype:create:sequenced_assembly>.builder("sequenced");
Parameter | Type | Description |
---|---|---|
Parameter name | Type string | Description The name of the recipe. |
Return Type: stdlib.List<T>
// SequencedAssemblyManager.getAllRecipes() as stdlib.List<T>
<recipetype:create:sequenced_assembly>.getAllRecipes();
Return Type: T
SequencedAssemblyManager.getRecipeByName(name as string) as T
Parameter | Type | Description |
---|---|---|
Parameter name | Type string | Description No Description Provided |
Return Type: T[ResourceLocation]
// SequencedAssemblyManager.getRecipeMap() as T[ResourceLocation]
<recipetype:create:sequenced_assembly>.getRecipeMap();
Return Type: stdlib.List<T>
SequencedAssemblyManager.getRecipesByOutput(output as IIngredient) as stdlib.List<T>
Parameter | Type | Description |
---|---|---|
Parameter output | Type IIngredient | Description No Description Provided |
Registers a recipe with the given name and is built by the consumer.
Return Type: void
// 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)) });
Parameter | Type | Description |
---|---|---|
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
SequencedAssemblyManager.remove(output as IIngredient) as void
Parameter | Type | Description |
---|---|---|
Parameter output | Type IIngredient | Description No Description Provided |
Return Type: void
// SequencedAssemblyManager.removeAll() as void
<recipetype:create:sequenced_assembly>.removeAll();
Return Type: void
SequencedAssemblyManager.removeByInput(input as IItemStack) as void
Parameter | Type | Description |
---|---|---|
Parameter input | Type IItemStack | Description No Description Provided |
Return Type: void
SequencedAssemblyManager.removeByModid(modid as string, exclude as Predicate<string>) as void
Parameter | Type | Description | Optional | DefaultValue |
---|---|---|---|---|
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
SequencedAssemblyManager.removeByName(names as string[]) as void
Parameter | Type | Description |
---|---|---|
Parameter names | Type string[] | Description No Description Provided |
Return Type: void
SequencedAssemblyManager.removeByRegex(regex as string, exclude as Predicate<string>) as void
Parameter | Type | Description | Optional | DefaultValue |
---|---|---|---|---|
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
Name | Type | Has Getter | Has Setter | Description |
---|---|---|---|---|
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 |