File Details
0.5+1.21-fabric
- R
- Jan 20, 2025
- 102.17 KB
- 26
- 1.21+1
- Fabric
File Name
1.21-rafaels-loot-bundle-0.5-fabric.jar
Supported Versions
- 1.21-Snapshot
- 1.21
Curse Maven Snippet
New Feature - Axolotl Loot Bundle

Content of Axolotl Bundle
- Salmon

- Cod

- Pufferfish

- 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;
}
}

