Ingredient Configs

Item Ingredient

"ingredient": {
    "type": "mm:item",
    "item": "minecraft:string",
    "count": 5
}

This example will define the ingredient as 5 pieces of string.

The "item" field is the id of the item and "count" is the quantity of that item.

Item Tag Ingredient

"ingredient": {
    "type": "mm:item",
    "tag": "forge:ingots",
    "count": 5
}

This example will define the ingredient ass 5 of any ingot (matches any with item tagforge:ingots)

The "tag" field is the item tag id and the "count" is the quantity required.

Fluid Ingredient

"ingredient": {
    "type": "mm:fluid",
    "fluid": "minecraft:water",
    "amount": 1000
}

This example will define the ingredient as 1000 mB of water, this is equivalent to 1 bucket of water.

Energy Ingredient

"ingredient": {
    "type": "mm:energy",
    "amount": 1000
}

This example will define the ingredient as 1000 FE (Forge Energy)

Mekanism Ingredients

Masterful Machinery support the following resources from Mekanism as ingredients in recipes.

Mekanism Gas Ingredient

"ingredient": {
    "type": "mm:mekanism/gas",
    "gas": "mekanism:hydrogen",
    "amount": 10
}

This example will define the ingredient as 10 mB of Mekanism hydrogen gas.

Mekanism Slurry Ingredient

"ingredient": {
    "type": "mm:mekanism/slurry",
    "slurry": "mekanism:clean_tin",
    "amount": 10
}

This example will define the ingredient as 10 mB of Mekanism clean slurry of tin.

Mekanism Pigment Ingredient

"ingredient": {
    "type": "mm:mekanism/pigment",
    "pigment": "mekanism:blue",
    "amount": 20
}

This example will define the ingredient as 20 mB of blue pigment from Mekanism.

Mekanism Infusion Ingredient

"ingredient": {
    "type": "mm:mekanism/infuse",
    "infuse": "mekanism:bio",
    "amount": 20
}

This example will define the ingredient as the biomass infusion type from Mekansim.

Create Ingredients

Masterful Machinery support the following resources from Create as ingredients in recipes.

Create Kinetic Ingredient

"ingredient": {
    "type": "mm:create/kinetic",
    "speed": 16
}

This example will define the ingredient as create kinetic rotation and the speed will be 16 RPM

Last updated