Project Table

Project Table

92.9k Downloads

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

crafting recipe

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
        }
    ]
}

Enchantment table recipe