This addon adds a way to define recipes that, when a player hovers the cursor over items shown in JEI item list or bookmarks and middle clicks them, the player will be given the items while consuming some defined ingredients.
Also supports JEI+EMI or TMRV+EMI, but in some very edge cases it will have behavioral problems when true cheating is enabled.
The addon is mostly designed for modpack-making, so it is not bundled with any recipe, and modpack authors can define their own JEI crafting recipes to make certain items easier to be accessed by the player.
Rationale
Some recipes in Minecraft are actually annoying, and especially for colored building blocks, or cosmetic blocks that are just building materials but have a recipe that requires you to go through 2 or 3 crafting operations to get. For example, if you want to build a house with 5 different colors of concrete, then you need to prepare those dyes and get 5 types of concrete sands beforehand, and if you accidentally run out of the material, you need to find a crafting table and make some more.
So, as the mod proposed and provided functionality for, an easier way would just remove these recipes, and let players take the concrete of different colors out directly, while consuming some basic concrete materials. Or even more radical, just let players get the building materials for free!
The same also applies to actual machines. For example, you have propeller, brass hand, mixer… in Create, but each item only serves as the crafting ingredient in one or two machines. When you want to relocate the factory or just rebuild some part of it, your inventory is stuffed by the machines, cogwheels, belts and shafts. And this is solvable by the mod, where you can just reduce all the machines back to the raw ingredients, and turn them into other machines when you feel like to. Recipe staging and gating is still there, as you can define what kind of materials are needed to craft different machines.
Usage
The recipes provided by this mod can be defined using datapacks:
{
"type": "jei_crafting:jei_crafting",
"output": {
"id": "minecraft:smoker",
"count": 1
},
"ingredients": [
{
"ingredient": {
"tag": "minecraft:logs"
},
"count": 4
},
{
"ingredient": {
"tag": "c:cobblestones"
},
"count": 8
}
],
"uncraftsTo": [
{
"id": "minecraft:oak_wood",
"count": 4
},
{
"id": "minecraft:cobblestone",
"count": 8
}
]
}
So we defined a JEI crafting recipe that converts 4 logs and 8 cobblestones to a smoker. The default config in JEI crafting crafts 8 times at once, and it is adjustable in config/jei/_crafting-client.toml.
The uncraftsTo
can be omitted to disable the uncrafting of a recipe, and the ingredients
can be omitted to make a recipe "free", consuming no items when the output is taken out by the player:
{
"type": "jei_crafting:jei_crafting",
"output": {
"id": "minecraft:bedrock",
"count": 1
}
}
Free recipes are automatically uncraftable, as at that time it's not very different from putting the items into trashcan.
Finally, we will have something looks like this:
KubeJS support is not very available at the time, as the recipe component does not allow empty list, where it is inevitable when defining free or not uncraftable items :/ But it's possible to define the recipe using event.custom
, like:
ServerEvents.recipes(event => {
event.custom({
type: "jei_crafting:jei_crafting",
output: Item.of("minecraft:bedrock"),
})
event.custom({
type: "jei_crafting:jei_crafting",
output: Item.of('minecraft:smoker'),
ingredients: [{
ingredient: Ingredient.of('#minecraft:logs'),
count: 4,
}, {
ingredient: Ingredient.of('#c:cobblestones'),
count: 8
}],
uncraftsTo: [
Item.of('minecraft:oak_wood', 4),
Item.of('minecraft:cobblestone', 8)
],
})
})