Minecraft Eidolon Recipes mod 2026 download
logo
minecraft mod Eidolon Recipes

Eidolon Recipes

Game Version: 1.16.5
Total Downloads: 837
Updated: Jun 22, 2021
Created: Jun 22, 2021
Download Eidolon RecipesDownload Earlier Versions

Earlier Versions

Name Size Uploaded Game Version Downloads
eidolonrecipes-1.16.5-1.0.jar release 12.52 KB Jun 22, 2021 1.16.5 837 download Eidolon Recipes eidolonrecipes-1.16.5-1.0.jar releaseDownload

Description

Share this:

Eidolon Recipes

This mod was made by Gulpy for the RaccPack modpack. It allows you to create custom recipes for Eidolon’s crucible and worktable.

Recipes are made in JSON format in directories:

config
└── eidolon-raccpack
    ├── crucible
    │   └── recipeName.json
    └── worktable
        └── recipeName.json

 

JSON formats

Crucible recipe

{
  "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 result, the field count may be omitted, it defaults to 1.

Worktable recipe

{
  "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
  }
}

Comments

Add a comment