Skylinerw

@UrADream - Extended zombie table

Jun 17th, 2016
429
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 2.43 KB | None | 0 0
  1. {
  2.     "pools": [
  3.         {
  4.             "rolls": 1,
  5.             "entries": [
  6.                 {
  7.                     "type": "item",
  8.                     "name": "minecraft:rotten_flesh",
  9.                     "weight": 1,
  10.                     "functions": [
  11.                         {
  12.                             "function": "set_count",
  13.                             "count": {
  14.                                 "min": 0,
  15.                                 "max": 2
  16.                             }
  17.                         },
  18.                         {
  19.                             "function": "looting_enchant",
  20.                             "count": {
  21.                                 "min": 0,
  22.                                 "max": 1
  23.                             }
  24.                         }
  25.                     ]
  26.                 }
  27.             ]
  28.         },
  29.         {
  30.             "conditions": [
  31.                 {
  32.                     "condition": "killed_by_player"
  33.                 },
  34.                 {
  35.                     "condition": "random_chance_with_looting",
  36.                     "chance": 0.025,
  37.                     "looting_multiplier": 0.01
  38.                 }
  39.             ],
  40.             "rolls": 1,
  41.             "entries": [
  42.                 {
  43.                     "type": "item",
  44.                     "name": "minecraft:iron_ingot",
  45.                     "weight": 1
  46.                 },
  47.                 {
  48.                     "type": "item",
  49.                     "name": "minecraft:carrot",
  50.                     "weight": 1
  51.                 },
  52.                 {
  53.                     "type": "item",
  54.                     "name": "minecraft:potato",
  55.                     "weight": 1
  56.                 }
  57.             ]
  58.         },
  59.         {
  60.             "rolls": 1,
  61.             "entries": [
  62.                 {
  63.                     "type": "item",
  64.                     "name": "minecraft:skull",
  65.                     "weight": 1,
  66.                     "functions": [
  67.                         {
  68.                             "function": "minecraft:set_data",
  69.                             "data": 2
  70.                         }
  71.                     ]
  72.                 }
  73.             ],
  74.             "conditions": [
  75.                 {
  76.                     "condition": "killed_by_player"
  77.                 },
  78.                 {
  79.                     "condition": "random_chance",
  80.                     "chance": 0.5
  81.                 }
  82.             ]
  83.         }
  84.     ]
  85. }
Add Comment
Please, Sign In to add comment