Eidolon Recipes
The Eidolon Recipes modification, created by Gulpy for the RaccPack modpack, provides the ability to configure custom recipes for the crucible and worktable from the Eidolon mod.
All recipes are created in JSON format and placed in the following directories:
config
└── eidolon-raccpack
├── crucible
│ └── recipeName.json
└── worktable
└── recipeName.json
JSON Formats
Crucible Recipes
{
"type": "eidolon:crucible",
"steps": [
{
"items": [
{ "item": "eidolon:sulfur" }
]
},
{
"stirs": 2,
"items": [
{ "item": "minecraft:diamond" }, { "item": "minecraft:emerald" }
]
},
{
"stirs": 3
}
],
"result": {
"item": "minecraft:obsidian",
"count": 15
}
}
In the result section, the count parameter can be omitted - it defaults to 1.
Worktable Recipes
{
"type": "eidolon:worktable",
"pattern": [
"abc",
"b b",
"aca"
],
"reagents": "a b ",
"key": {
"a": {
"item": "minecraft:diamond"
},
"b": {
"item": "minecraft:emerald"
},
"c": {
"item": "minecraft:obsidian"
}
},
"result": {
"item": "minecraft:obsidian",
"count": 16
}
}