Skip to content

Latest commit

 

History

History
73 lines (62 loc) · 2.2 KB

README.md

File metadata and controls

73 lines (62 loc) · 2.2 KB

Create Mechanical Extruder

Release Downloads Version Issues Modrinth

A mechanical extruder block. Can be used to generate any block or item from adjacent blocks/fluids. This mod it's meant to be used in modpacks. Only contains very basic recipes.

Heavily inspired on Thermal Expansions Igneous Extruder.

Extruding recipes

  • Left and right blocks/fluids are ingredients in any order.
  • results is an Item or Block CobbleGen example (already in the mod)
{
  "type": "create_mechanical_extruder:extruding",
  "ingredients": [

    {
      "fluid": "minecraft:water",
      "amount": 1000
    },
    {
      "fluid": "minecraft:lava",
      "amount": 1000
    }
  ],
  "result": {
    "item": "minecraft:cobblestone"
  }
}

BasaltGen example (already in the mod)

{
  "type": "create_mechanical_extruder:extruding",
  "ingredients": [
    {
      "fluid": "minecraft:lava",
      "amount": 1000
    },
    {
      "item": "minecraft:blue_ice"
    }
  ],
  "catalyst": {
    "item": "minecraft:soul_sand"
  },
  "result": {
    "item": "minecraft:basalt"
  }
}

Thanks to the Creators of Create.

Code inspiration from the Create mod itself.