

Project Table
Professional Workbench for Complex Projects
Project Table is designed for mod developers and pack creators, enabling the creation of large-scale crafting recipes with numerous ingredients. This workbench significantly simplifies working with complex recipes that would be inconvenient in the standard Minecraft crafting table.
Key Features
The system fully supports Ore Dictionary—meaning the ability to use equivalent blocks and items from different mods. Item metadata is also accounted for, ensuring complete compatibility with other modifications.
Adding Recipes
All recipes are configured through .json files located in the config/projectTable folder. The configuration format is intuitive and allows for easy description of complex crafts.
Example configuration for the standard enchanting table recipe in Project Table:
{
"crafts": [
{
"id": "minecraft:enchanting_table",
"Count": 1
}
],
"ingredients": [
{
"oredict": "gemDiamond", // Using diamonds through Ore Dictionary
"Count": 2
},
{
"id": "minecraft:book", // Regular book
"Count": 1
},
{
"id": "minecraft:obsidian", // Obsidian
"Count": 4
}
]
}