Ingredients

Ingredients are used for crafting in vanilla minecraft. Tetra adds two types of ingredients that can be used in modpacks or addons.

Scroll ingredient

The scroll ingredient is used by tetra for combining gild scrolls into higher tier gild scrolls. This ingredient probably has limited use outside of that. Type identifier: tetra:scroll

Example

Example recipe using scroll ingredients. The "type" and "key" fields are important for determining a match while the other fields determine how the ingredient would look like in JEI/NEI.

{
  "type": "minecraft:crafting_shapeless",
  "ingredients": [
    {
      "type": "tetra:scroll",
      "key": "hone/gild_1",
      "schematics": [""],
      "intricate": true,
      "material": 2,
      "ribbon": "c9ae69"
    },
    {
      "type": "tetra:scroll",
      "key": "hone/gild_1",
      "schematics": [""],
      "intricate": true,
      "material": 2,
      "ribbon": "c9ae69"
    }
  ],
  "result": {
    "item": "tetra:scroll_rolled",
    "count": 1,
    "nbt": {
      "BlockEntityTag": {
        "data": [
          {
            "key": "hone/gild_2",
            "schematics": ["tetra:hone/gild_1", "tetra:hone/gild_2"],
            "intricate": true,
            "material": 2,
            "ribbon": "d4b057",
            "glyphs": [15, 14, 13, 15]
          }
        ]
      }
    }
  }
}