Thaumcraft Research Patcher

Thaumcraft Research Patcher

1M Downloads

[Suggestion] Bulk Recipes

SaltSouls opened this issue ยท 1 comments

commented

As a pack creator It would be fantastic if there was a way to add bulk recipes to research kinda like how Thaumcraft does it.
By bulk, I mean the recipes when viewed in the book that kinda transition between one another. Having something like this would allow for lots of common recipes(maybe those using the same base item) to be all lumped together, rather than each one having its own tab, potentially leading to a terrible mess.
I imagine it could work something like this. Location config/tcresearchpatcher/groups
Layout

[
    {
        "key": "thaumcraft:group_key",
        "recipes": ["recipe_id_0","recipe_id_1","recipe_id_2",etc...]
    }
]

This could even just be done using a single json file called groups in config/tcresearchpatcher to make things easier.

commented

I would like to add that it would also be nice to bulk add recipes to already existing categories.
So something like:

[
    {
        "key": "METALPURIFICATION",
        "ops": [
            {
                "op": "add",
                "path": "stages/0/recipes/-",
                "values": ["thaumcraft:cluster_iron", "thaumcraft:cluster_copper","thaumcraft:cluster_silver",etc...]
            }
        ]
    }
]

Would again just help clean up the files so that they aren't so unreasonably long at times.