User Tools

Site Tools


tutorial:adding_to_loot_tables

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
tutorial:adding_to_loot_tables [2019/08/13 06:46] – No magic constants man! liachtutorial:adding_to_loot_tables [2024/02/05 16:08] (current) – Changed Minecraft wiki link to use minecraft.wiki mschae23
Line 3: Line 3:
 ===== Introduction ===== ===== Introduction =====
  
-Sometimes you want to add items to [[https://minecraft.gamepedia.com/Loot_table|loot tables]], for example adding your own drops to a vanilla block or entity. The simplest solution, replacing the loot table file, can break other mods – what if they want to change them as well? We’ll take a look at how you can add items to loot tables without overriding the table.+Sometimes you want to add items to [[https://minecraft.wiki/w/Loot_table|loot tables]], for example adding your own drops to a vanilla block or entity. The simplest solution, replacing the loot table file, can break other mods – what if they want to change them as well? We’ll take a look at how you can add items to loot tables without overriding the table.
  
 Our example will be adding eggs to the coal ore loot table. Our example will be adding eggs to the coal ore loot table.
Line 9: Line 9:
 ===== Listening to loot table loading ===== ===== Listening to loot table loading =====
  
-Fabric API has an event that’s fired when loot tables are loaded, ''%%LootTableLoadingCallback%%''. You can register an event listener for it in your initializer. Let’s also check that the current loot table is ''%%minecraft:blocks/coal_ore%%''.+Fabric API has an event that’s fired when loot tables are loaded, ''%%LootTableEvents.MODIFY%%''. You can register an event listener for it in your initializer. Let’s also check that the current loot table is the coal ore loot table.
  
-<code java>+<yarncode java>
 // No magic constants! // No magic constants!
-private static final Identifier COAL_ORE_LOOT_TABLE_ID = new Identifier("minecraft", "blocks/coal_ore");+private static final class_2960 COAL_ORE_LOOT_TABLE_ID = class_2246.COAL_ORE.getLootTableId();
  
 // Actual code // Actual code
  
-LootTableLoadingCallback.EVENT.register((resourceManager, lootManager, id, suppliersetter) -> { +LootTableEvents.MODIFY.register((resourceManager, lootManager, id, tableBuildersource) -> { 
-    if (COAL_ORE_LOOT_TABLE_ID.equals(id)) {+    // Let's only modify built-in loot tables and leave data pack loot tables untouched by checking the source. 
 +    // We also check that the loot table ID is equal to the ID we want. 
 +    if (source.isBuiltin() && COAL_ORE_LOOT_TABLE_ID.equals(id)) {
         // Our code will go here         // Our code will go here
     }     }
 }); });
-</code>+</yarncode>
  
 ===== Adding items to the table ===== ===== Adding items to the table =====
  
-In loot tables, items are stored in //loot entries,// and entries are stored in //loot pools//. To add an item, we’ll need to add a pool with an item entry to the loot table.+In loot tables, items are stored in //loot pool entries,// and entries are stored in //loot pools//. To add an item, we’ll need to add a pool with an item entry to the loot table.
  
-We can make a pool with ''%%FabricLootPoolBuilder%%'', and add it to the loot table:+We can make a pool with ''<yarn class_55$class_56>'', and add it to the loot table:
  
-<code java> +<yarncode java> 
-LootTableLoadingCallback.EVENT.register((resourceManager, lootManager, id, suppliersetter) -> { +LootTableEvents.MODIFY.register((resourceManager, lootManager, id, tableBuildersource) -> { 
-    if (COAL_ORE_LOOT_TABLE_ID.equals(id)) { +    if (source.isBuiltin() && COAL_ORE_LOOT_TABLE_ID.equals(id)) { 
-        FabricLootPoolBuilder poolBuilder = FabricLootPoolBuilder.builder(+        class_55.Builder poolBuilder = class_55.method_347();
-                .withRolls(ConstantLootTableRange.create(1)); // Same as "rolls": 1 in the loot table json+
  
-        supplier.withPool(poolBuilder);+        tableBuilder.method_336(poolBuilder);
     }     }
 }); });
-</code>+</yarncode>
 Our pool doesn’t have any items yet, so we’ll make an item entry and add it to the pool, and we're done: Our pool doesn’t have any items yet, so we’ll make an item entry and add it to the pool, and we're done:
  
-<code java> +<yarncode java> 
-LootTableLoadingCallback.EVENT.register((resourceManager, lootManager, id, suppliersetter) -> { +LootTableEvents.MODIFY.register((resourceManager, lootManager, id, tableBuildersource) -> { 
-    if (COAL_ORE_LOOT_TABLE_ID.equals(id)) { +    if (source.isBuiltin() && COAL_ORE_LOOT_TABLE_ID.equals(id)) { 
-        FabricLootPoolBuilder poolBuilder = FabricLootPoolBuilder.builder() +        class_55.Builder poolBuilder = class_55.method_347() 
-                .withRolls(ConstantLootTableRange.create(1)) +                .method_351(class_77.method_411(class_1802.field_8803));
-                .withEntry(ItemEntry.builder(Items.EGG));+
  
-        supplier.withPool(poolBuilder);+        tableBuilder.method_336(poolBuilder);
     }     }
 }); });
-</code>+</yarncode>
  
 {{:tutorial:coal_ore_egg.png?400|}} {{:tutorial:coal_ore_egg.png?400|}}
  
tutorial/adding_to_loot_tables.1565678813.txt.gz · Last modified: 2019/08/13 06:46 by liach