Masterful Machinery
  • 👋MM Docs
  • 💡Base Features & Config
    • Controllers
    • Ports
      • Item Ports
      • Fluid Ports
      • Energy Ports
      • Mekanism Ports (Compat)
        • Gas Ports
        • Slurry Ports
        • Pigment Ports
        • Infusion Ports
      • Create Kinetic (Compat)
      • PneumaticCraft Air (Compat)
    • Extra Blocks
    • Structures
      • Structure Requirements
      • Common Requirements
    • Process Recipes
      • Ingredient Configs
      • Input Entries
      • Output Entries
      • Recipe Conditions
  • 🔩Compat Features
    • KubeJS Support
      • Register Controller
      • Register Port
      • Register Extra Blocks
      • Create Structures
      • Create Process Recipes
  • Tutorial Guides
    • Step by Step Datapack Edition
  • General Help
    • 🪞Custom Textures
  • 🎥Gallery
    • Coke Oven
  • 📎Archived Versions
    • Deprecated 1.16 Versions
    • Deprecated 1.18-1.19 Versions
      • Data Packs
Powered by GitBook
On this page
  • Item Ingredient
  • Item Tag Ingredient
  • Fluid Ingredient
  • Energy Ingredient
  • Mekanism Ingredients
  • Mekanism Gas Ingredient
  • Mekanism Slurry Ingredient
  • Mekanism Pigment Ingredient
  • Mekanism Infusion Ingredient
  • Create Ingredients
  • Create Kinetic Ingredient
  1. Base Features & Config
  2. Process Recipes

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

PreviousProcess RecipesNextInput Entries

Last updated 11 months ago

💡