File Details
0.3+1.21.4-fabric
- R
- Jan 6, 2025
- 108.88 KB
- 104
- 1.21.4+1
- Fabric
File Name
1.21.4-rafaels-loot-bundle-0.3-fabric.jar
Supported Versions
- 1.21.4-Snapshot
- 1.21.4
Curse Maven Snippet
New Features
- Dronwed Bundle Added

Content of Drowned Bundle
- Copper Ingot
- Rotten Flesh
- Fishing Rod
- Trident
- Nautilus Shell
public class DrownedLootBundleContent {
public static Map<Item, Integer> getItems() {
Map<Item, Integer> items = new HashMap<>();
items.put(Items.ROTTEN_FLESH, 7);
items.put(Items.COPPER_INGOT, 3);
items.put(Items.NAUTILUS_SHELL, 1);
items.put(Items.TRIDENT, 1);
items.put(Items.FISHING_ROD,2);
return items;
}
}
Changes
- Fabric Version Updated

