Requires BuildCraft Silicon

Class path: mods.buildcraft.AssemblyTable

To use, import the class with import mods.buildcraft.AssemblyTable; at the beginning of your script.

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 MJ
  • inputs <IIngredient[]>
ZenScript
Copy
import mods.buildcraft.AssemblyTable;

AssemblyTable.addRecipe("example_recipe_for_diamonds", <minecraft:diamond>, 1000, [<minecraft:coal_block>, <minecraft:redstone>]);

Removing a Recipe

Link to removing-a-recipe

AssemblyTable.removeByName(name);

  • recipeName <string> The name of the recipe.
ZenScript
Copy
import mods.buildcraft.AssemblyTable;

AssemblyTable.removeByName("buildcraftsilicon:redstone_chipset");

Existing Recipes

Link to existing-recipes

  • buildcraftsilicon:redstone_chipset
  • buildcraftsilicon:iron_chipset
  • buildcraftsilicon:gold_chipset
  • buildcraftsilicon:quartz_chipset
  • buildcraftsilicon:diamond_chipset
  • buildcraftsilicon:plug_pulsar
  • buildcraftsilicon:light-sensor
  • buildcrafttransport:facaderecipes
  • buildcraftsilicon:lens-regular
  • buildcraftsilicon:lens-filter
  • buildcraftsilicon: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

  • 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

  • buildcraftsilicon:gate-<operation>-<material>-no_modifier
  • buildcraftsilicon:gate-modifier-<operation>-<material>-<modifier>

Parameters:

  • <operation>: and or or
  • <material>: iron, nether_brick, or gold
  • <modifier>: lapis, quartz, or diamond