Advertisement
Skylinerw

Loot table example (DamageSource vs KillerPlayer)

Mar 19th, 2016
709
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 0.95 KB | None | 0 0
  1. {
  2.     "pools": [
  3.         {
  4.             "rolls": 1,
  5.             "entries": [
  6.                 {
  7.                     "type": "item",
  8.                     "name": "minecraft:book",
  9.                     "weight": 1,
  10.                     "conditions": [
  11.                         {
  12.                             "condition": "killed_by_player"
  13.                         }
  14.                     ]
  15.                 }
  16.             ]
  17.         },
  18.         {
  19.             "rolls": 1,
  20.             "entries": [
  21.                 {
  22.                     "type": "item",
  23.                     "name": "minecraft:stone",
  24.                     "weight": 1,
  25.                     "conditions": [
  26.                         {
  27.                             "condition": "random_chance_with_looting",
  28.                             "chance": 0.0,
  29.                             "looting_multiplier": 1.0
  30.                         }
  31.                     ]
  32.                 }
  33.             ]
  34.         }
  35.     ]
  36. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement