Advertisement
Guest User

Example Entities Drop

a guest
Mar 5th, 2015
277
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. {  
  2.     "entitiesDrop":[
  3.         //Vanilla entity drop
  4.         {
  5.             "id":"Sheep",  
  6.             "overrides": false,
  7.             "drops":[
  8.                 {
  9.                     "id": "minecraft:sapling:0",
  10.                     "min" : 1,
  11.                     "max" : 1,    
  12.                     "chance" : 100.0
  13.                 }
  14.             ]  
  15.         },
  16.         //Vanilla entity drop with override
  17.         {
  18.             "id":"Cow",
  19.             "overrides": true,
  20.             "drops":[
  21.                 {
  22.                     "id": "minecraft:sapling:1",
  23.                     "min" : 1,
  24.                     "max" : 3,    
  25.                     "chance" : 100.0
  26.                 },
  27.                 {
  28.                     "id": "minecraft:sapling:2",
  29.                     "min" : 1,
  30.                     "max" : 5,    
  31.                     "chance" : 10.0
  32.                 }
  33.             ]  
  34.         }
  35.     ]
  36. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement