-
Notifications
You must be signed in to change notification settings - Fork 29
Combination Crafting
BlakeBr0 edited this page Apr 14, 2020
·
11 revisions
These docs are for version 1.x! Head here for the version 2.x+ docs.
mods.extendedcrafting.CombinationCrafting.addRecipe(<output>, rfCost, <input>, [<pedestalItem>, <pedestalItem>]);
mods.extendedcrafting.CombinationCrafting.addRecipe(<output>, rfCost, rfRate, <input>, [<pedestalItem>, <pedestalItem>]);
output = the item the recipe is for
rfCost = the amount of RF required to craft this recipe
rfRate = (OPTIONAL) the rate the recipe should take RF. rfCost/rfRate = the number of ticks required to craft the recipe. If this isn't defined it will use the default value defined in the configuration file
input = the input item that will go in the middle on the crafting core
pedestalItems = an array of items that are required to be on pedestals for the recipe. You can have anywhere from 0-48 of them
mods.extendedcrafting.CombinationCrafting.addRecipe(<minecraft:stick> * 10, 10000, 100, <minecraft:diamond>, [<ore:ingotIron>, <minecraft:stick>]);
mods.extendedcrafting.CombinationCrafting.remove(<output>);
output = the item of which you want their recipes removed