Compression Recipes

Mystical Agriculture allows you easily add your own Compressor recipes using both Datapacks and CraftTweaker.

Datapacks

Prerequisites
  • You can learn more about using vanilla datapacks here.
  • You can learn more about creating recipe JSON files here.

The Recipe File

This section will go over the values available to use in a Compressor recipe. Syntax can be inferred from the example json below.

FieldRequiredDescription
typeThe recipe type must be extendedcrafting:compressor.
power_costThe amount of power required to craft this recipe.
power_rateThe amount of power consumed per tick. If omitted will default to the config value.
ingredientThe input item and count.
catalystThe catalyst item. This item does not get consumed.
resultThe item that this recipe will output once finished.
Note

power_cost / power_rate = the amount of ticks required in the crafting stage.

Example File

{
  "type": "extendedcrafting:compressor",
  "power_cost": 500000,
  "ingredient": {
    "item": "minecraft:carrot",
    "count": 10000
  },
  "catalyst": {
    "item": "extendedcrafting:ender_catalyst"
  },
  "result": {
    "id": "minecraft:cobblestone"
  }
}

CraftTweaker

Extended Crafting comes with CraftTweaker support built-in. You can make use of CraftTweaker to easily manage Compression Crafting recipes.

Recipe Manager Support

CraftTweaker integration supports Recipe Managers! Access all applicable methods using <recipetype:extendedcrafting:compressor>!

Adding a Recipe

<recipetype:extendedcrafting:compressor>.addRecipe(name, <input>, <output>, input_count, <catalyst>, power_cost);    
<recipetype:extendedcrafting:compressor>.addRecipe(name, <input>, <output>, input_count, <catalyst>, power_cost, power_rate);
FieldRequiredDescription
nameA unique name for this recipe. Must be all lower case and have no spaces.
inputThe output item for this recipe.
input_countThe amount of the input item that is required.
catalystThe input item.
inputCountThe amount of the input item required.
catalystThe item that is required as a catalyst. This does not get consumed and goes in the small slot to the left.
power_costThe amount of FE required to complete the crafting stage of compression.
power_rateThe rate the recipe should consume FE during the crafting stage. If this parameter isn't added, it will use the default rate defined in the config file.
Note

power_cost / power_rate = the amount of ticks required in the crafting stage.

Example

<recipetype:extendedcrafting:compressor>.addRecipe("test", <tag:item:c:ingots/iron>, <item:minecraft:apple>, 50000, <tag:item:c:ingots/gold>, 2000000, 200);

Removing Recipes

<recipetype:extendedcrafting:compressor>.remove(<output>);
FieldRequiredDescription
outputThe item to remove all recipes for.