Hey guys,
I’m working on a new mod that will help manage food items after you’ve been playing a while. I’m putting my crates to use so I can craft the following.
10 Berries + 1 Wood Resource = Berry Crate - Small
So that’s all done and dusted and it’s fine.
Now what I’m trying to do is create a recipe to tear down the Berry Crate - Small back into 10 baskets of berries. I’m sure I don’t need a json file or an alias in the manifest for this but this is my carpenters_recipie.json file. I’m sure this is where the error lies.
{
"craftable_recipes": {
"storage": {
"ordinal": 6,
"name": "Food Storage",
"recipes": {
"berry_small": {
"recipe": "file(/recipes/food/berry_small_recipe.json)"
},
"berry_medium": {
"recipe": "file(/recipes/food/berry_medium_recipe.json)"
},
"berry_large": {
"recipe": "file(/recipes/food/berry_large_recipe.json)"
},
"corn_small": {
"recipe": "file(/recipes/food/corn_small_recipe.json)"
},
"corn_medium": {
"recipe": "file(/recipes/food/corn_medium_recipe.json)"
},
"corn_large": {
"recipe": "file(/recipes/food/corn_large_recipe.json)"
},
"pumpkin_small": {
"recipe": "file(/recipes/food/pumpkin_small_recipe.json)"
},
"pumpkin_medium": {
"recipe": "file(/recipes/food/pumpkin_medium_recipe.json)"
},
"pumpkin_large": {
"recipe": "file(/recipes/food/pumpkin_large_recipe.json)"
},
"td_berry_small": {
"recipe": "file(/recipes/teardown/td_berry_small_recipe.json)"
},
"td_berry_medium": {
"recipe": "file(/recipes/teardown/td_berry_medium_recipe.json)"
},
"td_berry_large": {
"recipe": "file(/recipes/teardown/td_berry_large_recipe.json)"
},
"td_corn_small": {
"recipe": "file(/recipes/teardown/td_corn_small_recipe.json)"
},
"td_corn_medium": {
"recipe": "file(/recipes/teardown/td_corn_medium_recipe.json)"
},
"td_corn_large": {
"recipe": "file(/recipes/teardown/td_corn_large_recipe.json)"
},
"td_pumpkin_small": {
"recipe": "file(/recipes/teardown/td_pumpkin_small_recipe.json)"
},
"td_pumpkin_medium": {
"recipe": "file(/recipes/teardown/td_pumpkin_medium_recipe.json)"
},
"td_pumpkin_large": {
"recipe": "file(/recipes/teardown/td_pumpkin_large_recipe.json)"
}
}
}
}
}
Now everything is there is fine until I get to the aliases with the "td" , I don’t need aliases, so that’s obviously where the error is coming from. Or do I need an alias? The teardown recipes are all done and I’m certain that they are perfect.

This is probably very simple but it’s going over my head at the moment, any help would be appreciated.