Assembly Table
Requires BuildCraft Silicon
Class path: mods.buildcraft.AssemblyTable
Use
To use, import the class with import mods.buildcraft.AssemblyTable; at the beginning of your script.
Adding a Recipe
AssemblyTable.addRecipe(recipeName, output, power, inputs);
recipeName(Optional) <string> The name of the recipe. Must be unique!output<IItemStack>power<int> Total power cost in MJinputs<IIngredient[]>
import mods.buildcraft.AssemblyTable;
AssemblyTable.addRecipe("example_recipe_for_diamonds", <minecraft:diamond>, 1000, [<minecraft:coal_block>, <minecraft:redstone>]);Removing a Recipe
AssemblyTable.removeByName(name);
recipeName<string> The name of the recipe.
import mods.buildcraft.AssemblyTable;
AssemblyTable.removeByName("buildcraftsilicon:redstone_chipset");Existing Recipes
Chipsets:
buildcraftsilicon:redstone_chipsetbuildcraftsilicon:iron_chipsetbuildcraftsilicon:gold_chipsetbuildcraftsilicon:quartz_chipsetbuildcraftsilicon:diamond_chipset
Pluggables:
buildcraftsilicon:plug_pulsarbuildcraftsilicon:light-sensorbuildcrafttransport:facaderecipes
Lenses:
buildcraftsilicon:lens-regularbuildcraftsilicon:lens-filterbuildcraftsilicon:lens-regular-<color>buildcraftsilicon:lens-filter-<color>
Replace <color> with any of the following: white, orange, magenta, lightblue, yellow, lime, pink, gray, silver, cyan, purple, blue, brown, green, red, black
Wires:
buildcrafttransport:wire-<color>
Replace <color> with any of the following: white, orange, magenta, lightblue, yellow, lime, pink, gray, silver, cyan, purple, blue, brown, green, red, black
Gates:
buildcraftsilicon:gate-<operation>-<material>-no_modifierbuildcraftsilicon:gate-modifier-<operation>-<material>-<modifier>
Parameters:
<operation>:andoror<material>:iron,nether_brick, orgold<modifier>:lapis,quartz, ordiamond