Guest User

simple_dungeon.json

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