Wiki page on custom recipes needs updating
blockninja124 opened this issue ยท 0 comments
Describe the Suggestion
The wiki page on adding custom recipes (via datapack), is outdated. It doesn't include the filling and emptying recipes, even though these work with a datapack. Here is my suggested redo of the page. (Note that I've only included from "recipes added by create" since I saw no changes needed in the earlier part of the page). (Also since this will get formatted by markdown, I've also included it as a raw file containing the entire wiki page, updated).
List types added/advanced by Create
Machine | Type | Shaped Crafting | Multiple Ingredients | Additional Parameter |
---|---|---|---|---|
Millstone | create:milling | No | No | processingTime<ticks> |
Crushing Wheel | create:crushing | No | No | processingTime<ticks> |
Mechanical Press | create:pressing | No | No | |
Mechnical Mixer | create:mixing | No | Yes | For ingredients: return_chance <double>, 1.0 = 100% {"item": "minecraft:blaze_rod", "return_chance": 0.97 } |
Mechinal Press + Basin (Compacting) | crafting_shaped, crafting_shapeless | Yes | No | The Compacting looks for squared shaped recipes with the same items |
Mechanical Sawing | create:cutting | No | No | processing_time<ticks> |
Mechanical Cutting | minecraft:stonecutting | No | No | |
Encased Fan + Water | create:splashing | No | No | |
Encased Fan + Lava | minecraft:smelting | No | No | cookingtime<ticks>, experience<double> |
Encased Fan + Fire/Campfire | minecraft:smoking | No | No | cookingtime<ticks>, experience<double> |
Sandpaper Polishing | create:sandpaper_polishing | No | No | |
Mechanical Crafter | create:mechanical_crafting | Yes | Yes | Shaped Crafting is needed |
Spout | create:filling | No | No | An item AND fluid ingredient is needed. |
Fluid Draining | create:emptying | No | No | Inside results needs a leftover item and resulting fluid |
Fluid results
When a fluid is required in a recipe, specify it with:
{
"fluid":"minecraft:water",
"nbt": {},
"amount": 500
}
The fluid amount is in mb.
Compacting Shapes
As the compacter searches for crafting_shaped and crafting_shapeless recipes some extra needs need to be fullfilled.
- the structure must be in a square shape (without spaces in the pattern)
AA
AA
AAA
AAA
AAA
- Only 1 key(item) is allowed for the pattern.
Mechanical Crafter
The crafter takes different Shapes, it could take up to 100 blocks for width and height (untested)
It was safely tested for up to 9x9 (including JEI), with 10 or more, JEI isn't able to show it anymore.
Example: the recipe in version 0.2.4 for the crushing wheel
"pattern": [
" PPP ",
"PSBSP",
"PBCBP",
"PSBSP",
" PPP "
],
"key": {
"P": {
"item": "create:andesite_alloy"
},
"S": {
"tag": "forge:rods/wooden"
},
"C": {
"item": "create:andesite_casing"
},
"B": {
"tag": "forge:stone"
}
},
Useful links
For some more examples or help on types, just check the data-pack recipes create already includes, or see the recipes built into Create:
Screenshots and Videos
No response
Additional Context
No response