Advertisement
Guest User

Extending fishing loot tables

a guest
Jun 13th, 2019
3,678
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 1.02 KB | None | 0 0
  1. // placed in C:\Users\[username]\AppData\Roaming\.minecraft\saves\[world name]\datapacks\[data pack name]\data\minecraft\loot_tables\gameplay\fishing.json
  2.  
  3. {
  4.   "type": "minecraft:fishing",
  5.   "pools": [
  6.     {
  7.       "rolls": 1,
  8.       "entries": [
  9.         {
  10.           "type": "minecraft:loot_table",
  11.           "weight": 10,
  12.           "quality": -2,
  13.           "name": "minecraft:gameplay/fishing/junk"
  14.         },
  15.         {
  16.           "type": "minecraft:loot_table",
  17.           "weight": 5,
  18.           "quality": 2,
  19.           "name": "minecraft:gameplay/fishing/treasure"
  20.         },
  21.         {
  22.           "type": "minecraft:loot_table",
  23.           "weight": 85,
  24.           "quality": -1,
  25.           "name": "minecraft:gameplay/fishing/fish"
  26.         },
  27.         {
  28.           "weight": 1,
  29.           "type": "minecraft:item",
  30.           "name": "minecraft:prismarine_shard"
  31.         },
  32.         {
  33.           "weight": 1,
  34.           "type": "minecraft:item",
  35.           "name": "minecraft:prismarine_crystals"
  36.         }
  37.       ]
  38.     }
  39.   ]
  40. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement