Uploaded image for project: 'Minecraft (Bedrock codebase)'
  1. Minecraft (Bedrock codebase)
  2. MCPE-188234

Resin brick items can be found in the woodland mansion chest loot

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Unresolved
    • None
    • 1.21.50.30 Preview, 1.21.50.28 Preview, 1.21.50.29 Preview
    • Confirmed
    • Multiple
    • 1327434

      In latest Java Edition snapshot, resin brick items can no longer be found in the woodland mansion chest loot. In Bedrock Edition, they can still be found in the woodland mansion chest loot, which causes a parity issue.

      The loot table from /behavior_packs/vanilla_1.21.50/loot_tables/chests/woodland_mansion.json in Bedrock Edition:

      {
        "pools": [
          {
            "rolls": {
              "min": 1,
              "max": 3
            },
            "entries": [
              {
                "type": "item",
                "name": "minecraft:lead",
                "weight": 100
              },
              {
                "type": "item",
                "name": "minecraft:golden_apple",
                "weight": 75
              },
              {
                "type": "item",
                "name": "minecraft:appleEnchanted",
                "weight": 10
              },
              {
                "type": "item",
                "name": "minecraft:record_13",
                "weight": 75
              },
              {
                "type": "item",
                "name": "minecraft:record_cat",
                "weight": 75
              },
              {
                "type": "item",
                "name": "minecraft:name_tag",
                "weight": 100
              },
              {
                "type": "item",
                "name": "minecraft:chainmail_chestplate",
                "weight": 50
              },
              {
                "type": "item",
                "name": "minecraft:diamond_hoe",
                "weight": 75
              },
              {
                "type": "item",
                "name": "minecraft:diamond_chestplate",
                "weight": 25
              },
              {
                "type": "item",
                "name": "minecraft:book",
                "weight": 60,
                "functions": [
                  {
                    "function": "enchant_randomly",
                    "treasure": true
                  }
                ]
              }
            ]
          },
          {
            "rolls": {
              "min": 1,
              "max": 4
            },
            "entries": [
              {
                "type": "item",
                "name": "minecraft:iron_ingot",
                "weight": 50,
                "functions": [
                  {
                    "function": "set_count",
                    "count": {
                      "min": 1,
                      "max": 4
                    }
                  }
                ]
              },
              {
                "type": "item",
                "name": "minecraft:gold_ingot",
                "weight": 25,
                "functions": [
                  {
                    "function": "set_count",
                    "count": {
                      "min": 1,
                      "max": 4
                    }
                  }
                ]
              },
              {
                "type": "item",
                "name": "minecraft:bread",
                "weight": 100
              },
              {
                "type": "item",
                "name": "minecraft:wheat",
                "weight": 100,
                "functions": [
                  {
                    "function": "set_count",
                    "count": {
                      "min": 1,
                      "max": 4
                    }
                  }
                ]
              },
              {
                "type": "item",
                "name": "minecraft:bucket",
                "weight": 50
              },
              {
                "type": "item",
                "name": "minecraft:redstone",
                "weight": 75,
                "functions": [
                  {
                    "function": "set_count",
                    "count": {
                      "min": 1,
                      "max": 4
                    }
                  }
                ]
              },
              {
                "type": "item",
                "name": "minecraft:coal",
                "weight": 75,
                "functions": [
                  {
                    "function": "set_count",
                    "count": {
                      "min": 1,
                      "max": 4
                    }
                  }
                ]
              },
              {
                "type": "item",
                "name": "minecraft:melon_seeds",
                "functions": [
                  {
                    "function": "set_count",
                    "count": {
                      "min": 2,
                      "max": 4
                    }
                  }
                ],
                "weight": 50
              },
              {
                "type": "item",
                "name": "minecraft:pumpkin_seeds",
                "functions": [
                  {
                    "function": "set_count",
                    "count": {
                      "min": 2,
                      "max": 4
                    }
                  }
                ],
                "weight": 50
              },
              {
                "type": "item",
                "name": "minecraft:beetroot_seeds",
                "functions": [
                  {
                    "function": "set_count",
                    "count": {
                      "min": 2,
                      "max": 4
                    }
                  }
                ],
                "weight": 50
              },
              {
                "type": "item",
                "name": "minecraft:resin_clump",
                "weight": 50,
                "functions": [
                  {
                    "function": "set_count",
                    "count": {
                      "min": 2,
                      "max": 4
                    }
                  }
                ]
              },
              {
                "type": "item",
                "name": "minecraft:resin_brick",
                "weight": 50,
                "functions": [
                  {
                    "function": "set_count",
                    "count": {
                      "min": 1,
                      "max": 2
                    }
                  }
                ]
              }
            ]
          },
          {
            "rolls": 3,
            "entries": [
              {
                "type": "item",
                "name": "minecraft:bone",
                "weight": 50,
                "functions": [
                  {
                    "function": "set_count",
                    "count": {
                      "min": 1,
                      "max": 8
                    }
                  }
                ]
              },
              {
                "type": "item",
                "name": "minecraft:gunpowder",
                "weight": 50,
                "functions": [
                  {
                    "function": "set_count",
                    "count": {
                      "min": 1,
                      "max": 8
                    }
                  }
                ]
              },
              {
                "type": "item",
                "name": "minecraft:rotten_flesh",
                "weight": 50,
                "functions": [
                  {
                    "function": "set_count",
                    "count": {
                      "min": 1,
                      "max": 8
                    }
                  }
                ]
              },
              {
                "type": "item",
                "name": "minecraft:string",
                "weight": 50,
                "functions": [
                  {
                    "function": "set_count",
                    "count": {
                      "min": 1,
                      "max": 8
                    }
                  }
                ]
              }
            ]
          },
          {
            "rolls": 1,
            "entries": [
              {
                "type": "empty",
                "weight": 1
              },
              {
                "type": "item",
                "name": "minecraft:vex_armor_trim_smithing_template",
                "weight": 1
              }
            ]
          }
        ]
      }
      

      The loot table from data/minecraft/loot_table/chests/woodland_mansion.json in Java Edition:

      {
        "type": "minecraft:chest",
        "pools": [
          {
            "bonus_rolls": 0.0,
            "entries": [
              {
                "type": "minecraft:item",
                "name": "minecraft:lead",
                "weight": 20
              },
              {
                "type": "minecraft:item",
                "name": "minecraft:golden_apple",
                "weight": 15
              },
              {
                "type": "minecraft:item",
                "name": "minecraft:enchanted_golden_apple",
                "weight": 2
              },
              {
                "type": "minecraft:item",
                "name": "minecraft:music_disc_13",
                "weight": 15
              },
              {
                "type": "minecraft:item",
                "name": "minecraft:music_disc_cat",
                "weight": 15
              },
              {
                "type": "minecraft:item",
                "name": "minecraft:name_tag",
                "weight": 20
              },
              {
                "type": "minecraft:item",
                "name": "minecraft:chainmail_chestplate",
                "weight": 10
              },
              {
                "type": "minecraft:item",
                "name": "minecraft:diamond_hoe",
                "weight": 15
              },
              {
                "type": "minecraft:item",
                "name": "minecraft:diamond_chestplate",
                "weight": 5
              },
              {
                "type": "minecraft:item",
                "functions": [
                  {
                    "function": "minecraft:enchant_randomly",
                    "options": "#minecraft:on_random_loot"
                  }
                ],
                "name": "minecraft:book",
                "weight": 10
              }
            ],
            "rolls": {
              "type": "minecraft:uniform",
              "max": 3.0,
              "min": 1.0
            }
          },
          {
            "bonus_rolls": 0.0,
            "entries": [
              {
                "type": "minecraft:item",
                "functions": [
                  {
                    "add": false,
                    "count": {
                      "type": "minecraft:uniform",
                      "max": 4.0,
                      "min": 1.0
                    },
                    "function": "minecraft:set_count"
                  }
                ],
                "name": "minecraft:iron_ingot",
                "weight": 10
              },
              {
                "type": "minecraft:item",
                "functions": [
                  {
                    "add": false,
                    "count": {
                      "type": "minecraft:uniform",
                      "max": 4.0,
                      "min": 1.0
                    },
                    "function": "minecraft:set_count"
                  }
                ],
                "name": "minecraft:gold_ingot",
                "weight": 5
              },
              {
                "type": "minecraft:item",
                "name": "minecraft:bread",
                "weight": 20
              },
              {
                "type": "minecraft:item",
                "functions": [
                  {
                    "add": false,
                    "count": {
                      "type": "minecraft:uniform",
                      "max": 4.0,
                      "min": 1.0
                    },
                    "function": "minecraft:set_count"
                  }
                ],
                "name": "minecraft:wheat",
                "weight": 20
              },
              {
                "type": "minecraft:item",
                "name": "minecraft:bucket",
                "weight": 10
              },
              {
                "type": "minecraft:item",
                "functions": [
                  {
                    "add": false,
                    "count": {
                      "type": "minecraft:uniform",
                      "max": 4.0,
                      "min": 1.0
                    },
                    "function": "minecraft:set_count"
                  }
                ],
                "name": "minecraft:redstone",
                "weight": 15
              },
              {
                "type": "minecraft:item",
                "functions": [
                  {
                    "add": false,
                    "count": {
                      "type": "minecraft:uniform",
                      "max": 4.0,
                      "min": 1.0
                    },
                    "function": "minecraft:set_count"
                  }
                ],
                "name": "minecraft:coal",
                "weight": 15
              },
              {
                "type": "minecraft:item",
                "functions": [
                  {
                    "add": false,
                    "count": {
                      "type": "minecraft:uniform",
                      "max": 4.0,
                      "min": 2.0
                    },
                    "function": "minecraft:set_count"
                  }
                ],
                "name": "minecraft:melon_seeds",
                "weight": 10
              },
              {
                "type": "minecraft:item",
                "functions": [
                  {
                    "add": false,
                    "count": {
                      "type": "minecraft:uniform",
                      "max": 4.0,
                      "min": 2.0
                    },
                    "function": "minecraft:set_count"
                  }
                ],
                "name": "minecraft:pumpkin_seeds",
                "weight": 10
              },
              {
                "type": "minecraft:item",
                "functions": [
                  {
                    "add": false,
                    "count": {
                      "type": "minecraft:uniform",
                      "max": 4.0,
                      "min": 2.0
                    },
                    "function": "minecraft:set_count"
                  }
                ],
                "name": "minecraft:beetroot_seeds",
                "weight": 10
              },
              {
                "type": "minecraft:item",
                "functions": [
                  {
                    "add": false,
                    "count": {
                      "type": "minecraft:uniform",
                      "max": 4.0,
                      "min": 2.0
                    },
                    "function": "minecraft:set_count"
                  }
                ],
                "name": "minecraft:resin_clump",
                "weight": 50
              }
            ],
            "rolls": {
              "type": "minecraft:uniform",
              "max": 4.0,
              "min": 1.0
            }
          },
          {
            "bonus_rolls": 0.0,
            "entries": [
              {
                "type": "minecraft:item",
                "functions": [
                  {
                    "add": false,
                    "count": {
                      "type": "minecraft:uniform",
                      "max": 8.0,
                      "min": 1.0
                    },
                    "function": "minecraft:set_count"
                  }
                ],
                "name": "minecraft:bone",
                "weight": 10
              },
              {
                "type": "minecraft:item",
                "functions": [
                  {
                    "add": false,
                    "count": {
                      "type": "minecraft:uniform",
                      "max": 8.0,
                      "min": 1.0
                    },
                    "function": "minecraft:set_count"
                  }
                ],
                "name": "minecraft:gunpowder",
                "weight": 10
              },
              {
                "type": "minecraft:item",
                "functions": [
                  {
                    "add": false,
                    "count": {
                      "type": "minecraft:uniform",
                      "max": 8.0,
                      "min": 1.0
                    },
                    "function": "minecraft:set_count"
                  }
                ],
                "name": "minecraft:rotten_flesh",
                "weight": 10
              },
              {
                "type": "minecraft:item",
                "functions": [
                  {
                    "add": false,
                    "count": {
                      "type": "minecraft:uniform",
                      "max": 8.0,
                      "min": 1.0
                    },
                    "function": "minecraft:set_count"
                  }
                ],
                "name": "minecraft:string",
                "weight": 10
              }
            ],
            "rolls": 3.0
          },
          {
            "bonus_rolls": 0.0,
            "entries": [
              {
                "type": "minecraft:empty"
              },
              {
                "type": "minecraft:item",
                "name": "minecraft:vex_armor_trim_smithing_template"
              }
            ],
            "rolls": 1.0
          }
        ],
        "random_sequence": "minecraft:chests/woodland_mansion"
      }
      

      Can find that there is resin_brick in Bedrock loot table but no in Java loot table.

            agoodday233 agoodday233
            Votes:
            7 Vote for this issue
            Watchers:
            6 Start watching this issue

              Created:
              Updated:
              CHK: