premium banner
An EMI addon that adds some features from jei that are missing

Description

This mod adds these features to EMI:

Block & Entity Tags

The Ability to add custom Brewing & Anvil Recipes for Modpack Makers/Modders

(Already includes support for Additional Additions die brewing and Exciting Enchants Spear Smithing)


Configuration:

Tags:

You can add assets/<id>/block_item_mappings.json and assets/<id>/entity_item_mappings.json to any resource pack. These describe what item should be used to represent the block/entity.

Entity Example:

[{ "entity": "minecraft:leash_knot",         "item": "minecraft:lead",          "name": "Lead" },
  { "entity": "minecraft:tnt",                "item": "minecraft:tnt" },
  { "entity": "minecraft:falling_block",      "item": "minecraft:sand",          "name": "Falling Block" }]

Block Example:

[{ "block": "minecraft:fire",             "item": "minecraft:flint_and_steel", "name": "Fire" },
  { "block": "minecraft:soul_fire",        "item": "minecraft:flint_and_steel", "name": "Soul Fire" }]

Recipes:

Recipes for Anvils and Brewing stands can be added in the normal recipe folder. CAUTION: these recipes do not add actual functionality. They are just used for displaying in EMI.

Anvil:

{
"type": "emijeicompat:anvil_display",
  "conditions": [
    {
      "type": "neoforge:mod_loaded",
      "modid": "excitingenchants"
    }
  ],
"left": {
"item": "excitingenchants:melleable_swordspear"
},
"right": {
"id": "minecraft:iron_ingot",
"count": 3
},
"output": {
"id": "excitingenchants:repaired_swordspear",
"count": 1
}
}

Brewing:

{
  "type": "emijeicompat:brewing_display",
  "conditions": [
    {
      "type": "neoforge:mod_loaded",
      "modid": "additionaladditions"
    }
  ],
  "input": {
    "id": "minecraft:potion",
    "components":
    {
      "minecraft:potion_contents": {
        "potion": "minecraft:water"
      }
    }
  },
  "ingredient": {
    "item": "additionaladditions:frostleaf"
  },
  "output": {
    "id": "additionaladditions:blue_suspicious_dye",
    "count": 1
  }
}