fanCustom Fan

This recipe type is used to create Encased Fan recipes using custom blocks in front of the fan.

The type field for this recipe type is cmr:custom_fan

Properties

Mandatory Properties

chevron-rightIngredientshashtag

Name : ingredients

Description :

This field is used to define the ingredients for the recipes.

It is an array of minimum 2 ingredients in it.

The first ingredient is the ingredient that the player should throw in front of the fan and which will be transformed.

The second ingredient is the block that should be place in front of the fan. It can either be an block ingredient or a fluid ingredient. This ingredient will be the one used for the particle of the fan.

Example :

"ingredients": [
    {
      "tag": "c:cobblestone"
    },
    {
      "type": "fluid_stack",
      "amount": 1000,
      "fluid": "create:honey"
    }
  ]
chevron-rightResultshashtag

Name : results

Description :

This field is an array of processing results which can have a chance field to make them optional.

Example :

"results": [
  {
    "item": {
      "id": "minecraft:diamond"
    },
    "chance": 0.75
  },
  {
    "item": {
      "id": "minecraft:dirt"
    },
    "chance": 0.25
  }
]

Optional Properties

This recipe type doesn't have optional properties

Example :

A simple recipe that transform a snow block into ice behind Powered Snow

Another recipe that transform cobblestones into diamond or dirt behind honey fluid

Last updated