ProcessingRecipeBuilder
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.
Methods
Sets the duration of the recipe to the average processing duration, which is 100 ticks.
Returns: This builder for further chaining.
Return Type: ProcessingRecipeBuilder<ProcessingRecipe<Container>>
Sets the duration of the recipe in ticks.
Returns: This builder for further chaining.
Return Type: ProcessingRecipeBuilder<ProcessingRecipe<Container>>
Parameter | Type | Description |
---|---|---|
Parameter ticks | Type int | Description The duration of the recipe in ticks. |
Sets the recipe to output the given IFluidStack.
Returns: This builder for futher chaining.
Return Type: ProcessingRecipeBuilder<ProcessingRecipe<Container>>
Parameter | Type | Description |
---|---|---|
Parameter fluidStack | Type IFluidStack | Description The fluid to output. |
Sets the recipe to output the given Percentaged<T> item.
Returns: This builder for further chaining.
Return Type: ProcessingRecipeBuilder<ProcessingRecipe<Container>>
Parameter | Type | Description |
---|---|---|
Parameter item | Type Percentaged<IItemStack> | Description The item to output. |
Sets the recipe to require the given fluid ingredient.
This can be chained multiple times for multiple ingredients.
Returns: This builder for further chaining.
Return Type: ProcessingRecipeBuilder<ProcessingRecipe<Container>>
Parameter | Type | Description |
---|---|---|
Parameter ingredient | Type FluidIngredient | Description The fluid ingredient to require. |
Sets the recipe to require the given item ingredient.
This can be chained multiple times for multiple ingredients.
Returns: This builder for further chaining.
Return Type: ProcessingRecipeBuilder<ProcessingRecipe<Container>>
Parameter | Type | Description |
---|---|---|
Parameter ingredient | Type IIngredient | Description The item ingredient to require. |
Sets the recipe to require the specific HeatCondition.
Returns: This builder for further chaining.
Return Type: ProcessingRecipeBuilder<ProcessingRecipe<Container>>
Parameter | Type | Description |
---|---|---|
Parameter condition | Type HeatCondition | Description The heat condition of the recipe. |
Sets the fluid ingredients of the recipe.
Returns: This builder for further chaining.
Return Type: ProcessingRecipeBuilder<ProcessingRecipe<Container>>
Parameter | Type | Description |
---|---|---|
Parameter ingredients | Type FluidIngredient[] | Description The fluid ingredients of the recipe. |
Sets the fluid outputs of the recipe.
Returns: This builder for further chaining.
Return Type: ProcessingRecipeBuilder<ProcessingRecipe<Container>>
Parameter | Type | Description |
---|---|---|
Parameter outputs | Type IFluidStack[] | Description The fluid outputs of the recipe. |
Sets the item ingredients of the recipe.
Returns: This builder for further chaining.
Return Type: ProcessingRecipeBuilder<ProcessingRecipe<Container>>
Parameter | Type | Description |
---|---|---|
Parameter ingredients | Type IIngredient[] | Description The item ingredients of the recipe. |
Sets the item outputs of the recipe.
Returns: This builder for further chaining.
Return Type: ProcessingRecipeBuilder<ProcessingRecipe<Container>>
Parameter | Type | Description |
---|---|---|
Parameter outputs | Type Percentaged<IItemStack>[] | Description The outputs of the recipe. |
Sets the single item output of the recipe.
Returns: This builder for further chaining.
Return Type: ProcessingRecipeBuilder<ProcessingRecipe<Container>>
Parameter | Type | Description |
---|---|---|
Parameter output | Type IItemStack | Description The single item output of this recipe. |