You are viewing the docs for an older version. View Latest Docs (26.1)

Compression Recipes

Extended Crafting 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
type✓The recipe type must be extendedcrafting:compressor.
powerCost✓The amount of power required to craft this recipe.
powerRateThe amount of power consumed per tick. If omitted will default to the config value.
ingredient✓The input item.
inputCount✓The amount of the input item required.
catalyst✓The catalyst item. This item does not get consumed.
result✓The item that this recipe will output once finished.
Note

The amount of time (in ticks) a Compression recipe takes to complete is powerCost / powerRate.

Example File

{
  "type": "extendedcrafting:compressor",
  "powerCost": 500000,
  "inputCount": 10000,
  "ingredient": {
    "item": "minecraft:carrot"
  },
  "catalyst": {
    "item": "extendedcrafting:ender_catalyst"
  },
  "result": {
    "item": "minecraft:cobblestone"
  }
}

CraftTweaker

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

Adding A Recipe

mods.extendedcrafting.CompressionCrafting.addRecipe(name, <input>, <output>, inputCount, <catalyst>, powerCost);    
mods.extendedcrafting.CompressionCrafting.addRecipe(name, <input>, <output>, inputCount, <catalyst>, powerCost, powerRate);
FieldRequiredDescription
name✓A unique name for this recipe. Must be all lower case and have no spaces.
input✓The output item for this recipe.
inputCount✓The amount of the input item that is required.
catalyst✓The input item.
inputCount✓The amount of the input item required.
catalyst✓The item that is required as a catalyst. This does not get consumed and goes in the small slot to the left.
powerCost✓The amount of FE required to complete the crafting stage of compression.
powerRateThe 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

The amount of time (in ticks) a Compression recipe takes to complete is powerCost / powerRate.

Example

mods.extendedcrafting.CompressionCrafting.addRecipe("test", <tag:forge:ingots/iron>, <item:minecraft:apple>, 50000, <tag:forge:ingots/gold>, 2000000, 200);

Removing Recipes

mods.extendedcrafting.CompressionCrafting.remove(<output>);
FieldRequiredDescription
output✓The item to remove all recipes for.