Combination Crafting (Extended Crafting)
Description
Converts one main item and any number of additional items into an output itemstack, with a configurable rf cost and consumption per tick amount.
Info
By default, there are no Combination recipes.
Identifier
Refer to this via any of the following:
mods.extendedcrafting.combination_crafting/* Used as page default */
mods.extendedcrafting.combinationcrafting
mods.extendedcrafting.combinationCrafting
mods.extendedcrafting.CombinationCrafting
mods.extendedcrafting.combination
mods.extendedcrafting.Combination
Adding Recipes
Add the given recipe to the recipe list:
groovymods.extendedcrafting.combination_crafting.add(CombinationRecipe)
Adds recipes in the format
output
,cost
,input
,pedestals
:groovymods.extendedcrafting.combination_crafting.add(ItemStack, long, Ingredient, NonNullList<Ingredient>)
Adds recipes in the format
output
,cost
,perTick
,input
,pedestals
:groovymods.extendedcrafting.combination_crafting.add(ItemStack, long, int, Ingredient, NonNullList<Ingredient>)
Recipe Builder
Just like other recipe types, the Combination Crafting also uses a recipe builder.
Don't know what a builder is? Check the builder info page out.
mods.extendedcrafting.combination_crafting.recipeBuilder()
IngredientList<IIngredient>
. Sets the item inputs of the recipe. Requires exactly 1.groovyinput(IIngredient) input(IIngredient...) input(Collection<IIngredient>)
ItemStackList
. Sets the item outputs of the recipe. Requires exactly 1.groovyoutput(ItemStack) output(ItemStack...) output(Collection<ItemStack>)
long
. Sets the amount of RF required to complete the craft. Requires greater than or equal to 0. (Default0
).groovycost(long) totalCost(long)
int
. Sets the maximum amount of RF consumed per tick until the entire cost is paid. Requires greater than or equal to 0. (DefaultModConfig.confCraftingCoreRFRate
).groovyperTick(int) costPerTick(int)
NonNullList<IIngredient>
. Sets the required items on nearby pedestals.groovypedestals(IIngredient) pedestals(IIngredient...) pedestals(Collection<IIngredient>)
First validates the builder, returning
null
and outputting errors to the log file if the validation failed, then registers the builder and returns the registered object. (returnsnull
orcom.blakebr0.extendedcrafting.crafting.CombinationRecipe
).groovyregister()
Example
mods.extendedcrafting.combination_crafting.recipeBuilder()
.input(item('minecraft:pumpkin'))
.pedestals(item('minecraft:pumpkin') * 8)
.output(item('minecraft:diamond') * 2)
.cost(100)
.perTick(100)
.register()
mods.extendedcrafting.combination_crafting.recipeBuilder()
.input(item('minecraft:pumpkin'))
.pedestals(item('minecraft:pumpkin'), item('minecraft:clay'), item('minecraft:clay'), item('minecraft:pumpkin'))
.output(item('minecraft:gold_ingot') * 2)
.cost(10000)
.register()
Removing Recipes
Removes the given recipe from the recipe list:
groovymods.extendedcrafting.combination_crafting.remove(CombinationRecipe)
Removes all recipes that match the given input:
groovymods.extendedcrafting.combination_crafting.removeByInput(IIngredient)
Removes all recipes that match the given input:
groovymods.extendedcrafting.combination_crafting.removeByInput(ItemStack)
Removes all recipes that match the given output:
groovymods.extendedcrafting.combination_crafting.removeByOutput(ItemStack)
Removes all registered recipes:
groovymods.extendedcrafting.combination_crafting.removeAll()
Example
mods.extendedcrafting.combination_crafting.removeByInput(item('minecraft:pumpkin'))
mods.extendedcrafting.combination_crafting.removeByOutput(item('minecraft:gold_ingot'))
mods.extendedcrafting.combination_crafting.removeAll()
Getting the value of recipes
Iterates through every entry in the registry, with the ability to call remove on any element to remove it:
groovymods.extendedcrafting.combination_crafting.streamRecipes()