Advertisement
Skylinerw

Fishing Loot Table (1.9 pre-2)

Feb 20th, 2016
1,168
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 7.45 KB | None | 0 0
  1. /*
  2. * Base fishing table to determine which of the sub-tables to use.
  3. */
  4.  
  5. {
  6.     "pools": [
  7.         {
  8.             "rolls": 1,
  9.             "entries": [
  10.                 {
  11.                     "type": "loot_table",
  12.                     "name": "minecraft:gameplay/fishing/junk",
  13.                     "weight": 10,
  14.                     "quality": -2
  15.                 },
  16.                 {
  17.                     "type": "loot_table",
  18.                     "name": "minecraft:gameplay/fishing/treasure",
  19.                     "weight": 5,
  20.                     "quality": 2
  21.                 },
  22.                 {
  23.                     "type": "loot_table",
  24.                     "name": "minecraft:gameplay/fishing/fish",
  25.                     "weight": 85,
  26.                     "quality": -1
  27.                 }
  28.             ]
  29.         }
  30.     ]
  31. }
  32.  
  33. /*
  34. * Junk.
  35. */
  36.  
  37. {
  38.     "pools": [
  39.         {
  40.             "rolls": 1,
  41.             "entries": [
  42.                 {
  43.                     "type": "item",
  44.                     "name": "minecraft:leather_boots",
  45.                     "weight": 10,
  46.                     "functions": [
  47.                         {
  48.                             "function": "set_damage",
  49.                             "damage": {
  50.                                 "min": 0,
  51.                                 "max": 0.90
  52.                             }
  53.                         }
  54.                     ]
  55.                 },
  56.                 {
  57.                     "type": "item",
  58.                     "name": "minecraft:leather",
  59.                     "weight": 10
  60.                 },
  61.                 {
  62.                     "type": "item",
  63.                     "name": "minecraft:bone",
  64.                     "weight": 10
  65.                 },
  66.                 {
  67.                     "type": "item",
  68.                     "name": "minecraft:potion",
  69.                     "weight": 10
  70.                 },
  71.                 {
  72.                     "type": "item",
  73.                     "name": "minecraft:string",
  74.                     "weight": 5
  75.                 },
  76.                 {
  77.                     "type": "item",
  78.                     "name": "minecraft:fishing_rod",
  79.                     "weight": 2,
  80.                     "functions": [
  81.                         {
  82.                             "function": "set_damage",
  83.                             "damage": {
  84.                                 "min": 0,
  85.                                 "max": 0.90
  86.                             }
  87.                         }
  88.                     ]
  89.                 },
  90.                 {
  91.                     "type": "item",
  92.                     "name": "minecraft:bowl",
  93.                     "weight": 10
  94.                 },
  95.                 {
  96.                     "type": "item",
  97.                     "name": "minecraft:stick",
  98.                     "weight": 5
  99.                 },
  100.                 {
  101.                     "type": "item",
  102.                     "name": "minecraft:dye",
  103.                     "weight": 10,
  104.                     "functions": [
  105.                         {
  106.                             "function": "set_data",
  107.                             "data": 0
  108.                         }
  109.                     ]
  110.                 },
  111.                 {
  112.                     "type": "item",
  113.                     "name": "minecraft:tripwire_hook",
  114.                     "weight": 10
  115.                 },
  116.                 {
  117.                     "type": "item",
  118.                     "name": "minecraft:rotten_flesh",
  119.                     "weight": 10
  120.                 }
  121.             ]
  122.         }
  123.     ]
  124. }
  125.  
  126. /*
  127. * Treasure.
  128. */
  129.  
  130. {
  131.     "pools": [
  132.         {
  133.             "rolls": 1,
  134.             "entries": [
  135.                 {
  136.                     "type": "item",
  137.                     "name": "minecraft:waterlily",
  138.                     "weight": 1
  139.                 },
  140.                 {
  141.                     "type": "item",
  142.                     "name": "minecraft:name_tag",
  143.                     "weight": 1
  144.                 },
  145.                 {
  146.                     "type": "item",
  147.                     "name": "minecraft:saddle",
  148.                     "weight": 1
  149.                 },
  150.                 {
  151.                     "type": "item",
  152.                     "name": "minecraft:bow",
  153.                     "weight": 1,
  154.                     "functions": [
  155.                         {
  156.                             "function": "set_damage",
  157.                             "damage": {
  158.                                 "min": 0,
  159.                                 "max": 0.25
  160.                             }
  161.                         },
  162.                         {
  163.                             "function": "enchant_with_levels",
  164.                             "levels": 30,
  165.                             "treasure": true
  166.                         }
  167.                     ]
  168.                 },
  169.                 {
  170.                     "type": "item",
  171.                     "name": "minecraft:fishing_rod",
  172.                     "weight": 1,
  173.                     "functions": [
  174.                         {
  175.                             "function": "set_damage",
  176.                             "damage": {
  177.                                 "min": 0,
  178.                                 "max": 0.25
  179.                             }
  180.                         },
  181.                         {
  182.                             "function": "enchant_with_levels",
  183.                             "levels": 30,
  184.                             "treasure": true
  185.                         }
  186.                     ]
  187.                 },
  188.                 {
  189.                     "type": "item",
  190.                     "name": "minecraft:book",
  191.                     "weight": 1,
  192.                     "functions": [
  193.                         {
  194.                             "function": "enchant_with_levels",
  195.                             "levels": 30,
  196.                             "treasure": true
  197.                         }
  198.                     ]
  199.                 }
  200.             ]
  201.         }
  202.     ]
  203. }
  204.  
  205. /*
  206. * Fish.
  207. */
  208.  
  209. {
  210.     "pools": [
  211.         {
  212.             "rolls": 1,
  213.             "entries": [
  214.                 {
  215.                     "type": "item",
  216.                     "name": "minecraft:fish",
  217.                     "functions": [
  218.                         {
  219.                             "function": "set_data",
  220.                             "data": 0
  221.                         }
  222.                     ],
  223.                     "weight": 60
  224.                 },
  225.                 {
  226.                     "type": "item",
  227.                     "name": "minecraft:fish",
  228.                     "functions": [
  229.                         {
  230.                             "function": "set_data",
  231.                             "data": 1
  232.                         }
  233.                     ],
  234.                     "weight": 25
  235.                 },
  236.                 {
  237.                     "type": "item",
  238.                     "name": "minecraft:fish",
  239.                     "functions": [
  240.                         {
  241.                             "function": "set_data",
  242.                             "data": 2
  243.                         }
  244.                     ],
  245.                     "weight": 2
  246.                 },
  247.                 {
  248.                     "type": "item",
  249.                     "name": "minecraft:fish",
  250.                     "functions": [
  251.                         {
  252.                             "function": "set_data",
  253.                             "data": 3
  254.                         }
  255.                     ],
  256.                     "weight": 13
  257.                 }
  258.             ]
  259.         }
  260.     ]
  261. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement