30 lines
		
	
	
	
		
			1.5 KiB
		
	
	
	
		
			Java
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
	
		
			1.5 KiB
		
	
	
	
		
			Java
		
	
	
	
	
	
| package net.minecraft.data.loot.packs;
 | |
| 
 | |
| import java.util.List;
 | |
| import java.util.concurrent.CompletableFuture;
 | |
| import net.minecraft.core.HolderLookup;
 | |
| import net.minecraft.data.PackOutput;
 | |
| import net.minecraft.data.loot.LootTableProvider;
 | |
| import net.minecraft.world.level.storage.loot.BuiltInLootTables;
 | |
| import net.minecraft.world.level.storage.loot.parameters.LootContextParamSets;
 | |
| 
 | |
| public class VanillaLootTableProvider {
 | |
| 	public static LootTableProvider create(PackOutput output, CompletableFuture<HolderLookup.Provider> registries) {
 | |
| 		return new LootTableProvider(
 | |
| 			output,
 | |
| 			BuiltInLootTables.all(),
 | |
| 			List.of(
 | |
| 				new LootTableProvider.SubProviderEntry(VanillaFishingLoot::new, LootContextParamSets.FISHING),
 | |
| 				new LootTableProvider.SubProviderEntry(VanillaChestLoot::new, LootContextParamSets.CHEST),
 | |
| 				new LootTableProvider.SubProviderEntry(VanillaEntityLoot::new, LootContextParamSets.ENTITY),
 | |
| 				new LootTableProvider.SubProviderEntry(VanillaEquipmentLoot::new, LootContextParamSets.EQUIPMENT),
 | |
| 				new LootTableProvider.SubProviderEntry(VanillaBlockLoot::new, LootContextParamSets.BLOCK),
 | |
| 				new LootTableProvider.SubProviderEntry(VanillaPiglinBarterLoot::new, LootContextParamSets.PIGLIN_BARTER),
 | |
| 				new LootTableProvider.SubProviderEntry(VanillaGiftLoot::new, LootContextParamSets.GIFT),
 | |
| 				new LootTableProvider.SubProviderEntry(VanillaArchaeologyLoot::new, LootContextParamSets.ARCHAEOLOGY),
 | |
| 				new LootTableProvider.SubProviderEntry(VanillaShearingLoot::new, LootContextParamSets.SHEARING)
 | |
| 			),
 | |
| 			registries
 | |
| 		);
 | |
| 	}
 | |
| }
 |