Compat

Note: EE does not come with any pre-configured compat, and therefore creation of material compat should be completely done by the modpack developer from scratch.

  • Locate the emendatusenigmatica\compat config folder inside the root config folder.

  • Create a *.json file inside this folder for each material compat you wish to add to the game.

Below you will find a more detailed break down of the Compat Data object, and a brief explanation of each data field. An example of a complete compat file can be found here.

Compat Core module:

REQUIRED FIELD
"id": string // example: "id": "iridium"

Used to identify the material for this compat file.

REQUIRED FIELD
"recipes": [{ object }]

This JSON list of objects houses the Compat Recipes module.

A single recipe list can hold multiple objects at once.

Compat Recipes module:

REQUIRED FIELD
"mod": string // example: "mod": "thermal"

Used for identify the mod for this recipe object.

Supported Mods:

Thermal: thermal

Create: create

REQUIRED FIELD
"machine": string // example: "machine": "induction_smelter"

Used for identify the machine for this recipe object.

Supported Machines:

Thermal Expansion: pulverizer induction_smelter

Create: crushing_wheels fan_washing

REQUIRED FIELD
"values": [{ object }]

This JSON list of objects houses the Recipe Values module.

A single value list can hold multiple objects at once.

Recipe Values module:

"type": string // example: "type": "ore"

Used to identify the input type of the recipe.

Supported Types:

Thermal: ore raw alloy

Create: ore crushed_ore

"input": [{ object }]

This JSON list of objects houses the Value Input module.

A single input list can hold multiple objects at once.

NOTE: This list is currently only used for thermal induction_smelter alloy.

"output": [{ object }]

This JSON list of objects houses the Value Output module.

A single output list can hold multiple objects at once.

Value Input module:

"item": string // example: "item": "minecraft:apple"

Used to identify an input item.

"count": integer // example: "count": 3

Used to identify an input item's count.

Value Output module:

Almost all compat recipes have a default output, and this list is used to introduce additional outputs.

For example crushing an Ore in the Create's Crushing Wheels will always give you 1x Crushed Ore if it doesn't have an output compat, and therefore this list should be used for additional outputs like extra Crushed Ores, Experience Nuggets, Cobblestone ..etc.

"item": string // example: "item": "emendatusenigmatica:iridium_dust"

Used to identify an output item.

"count": integer // example: "count": 2

Used to identify an output item's count.

"chance": float // example: "chance": 0.65

Used to identify an output item's chance.

Last updated