promotional bannermobile promotional banner

Rafael's Loot Bundles

This mod adds Loot Bundles that give players random loot from the entire game. It’s perfect for adding surprise rewards and variety to your Minecraft world!

File Details

0.5+1.21.4-fabric

  • R
  • Jan 20, 2025
  • 111.15 KB
  • 158
  • 1.21.4+1
  • Fabric

File Name

1.21.4-rafaels-loot-bundle-0.5-fabric.jar

Supported Versions

  • 1.21.4-Snapshot
  • 1.21.4

Curse Maven Snippet

Fabric

modImplementation "curse.maven:rafaels-loot-bundles-1168408:6106178"
Curse Maven does not yet support mods that have disabled 3rd party sharing

Learn more about Curse Maven

New Feature - Axolotl Loot Bundle

Axolotl Loot Bundle

Content of Axolotl Bundle

  • Salmon Salmon
  • Cod Cod
  • Pufferfish Pufferfish
  • Tropical Fish Tropical Fish
public class AxolotlLootBundleContent {
    public static Map<Item, Integer> getItems() {
        Map<Item, Integer> items = new HashMap<>();
        items.put(Items.TROPICAL_FISH, 2);
        items.put(Items.PUFFERFISH, 2);
        items.put(Items.COD, 2);
        items.put(Items.SALMON, 2);
        return items;
    }
}