Drop Item In Fluid - benbenlaw/InWorldRecipes GitHub Wiki

Drop Item In Fluid

Dropping an item into a fluid converts in into a different one. Example below shows a Diamond dropped into water to create various drops. Additional customization fields shown below.

{
  "type": "inworldrecipes:drop_item_in_fluid",
  "dropped_item":
    {
      "item": "minecraft:diamond"
    }
  ,
  "fluid": "minecraft:water",
  "consume_fluid": true,
  "results": [
    {
      "item": {
        "count": 2,
        "id": "minecraft:acacia_log"
      }
    },
    {
      "chance": 0.2,
      "item": {
        "count": 1,
        "id": "minecraft:acacia_sapling"
      }
    },
    {
      "chance": 0.1,
      "item": {
        "count": 1,
        "id": "minecraft:stick"
      }
    }
  ]

}