This is a mod primarily for Mod Pack makers that allows you to create epic large scale crafting recipes, and make it easy to consume those recipes.
Recipes can be defined using large numbers of items. Ore dictionary is fully supported, as is meta values.
Crafting
Adding recipes to the Project Table
Recipes can be added via .json files in config/projectTable
here is an example that adds the vanilla enchanting table recipe to the project table:
config/projectTable/enchanting_table.json
{ "crafts": [ { "id": "minecraft:enchanting_table", "Count": 1 } ], "ingredients": [ { "oredict": "gemDiamond", "Count": 2 }, { "id": "minecraft:book", "Count": 1 }, { "id": "minecraft:obsidian", "Count": 4 } ] }