Skip to content

Instantly share code, notes, and snippets.

@rockenroll4life
Created October 29, 2018 22:21
Show Gist options
  • Save rockenroll4life/2ac423faaafee1c282c0cb5c5dc145ac to your computer and use it in GitHub Desktop.
Save rockenroll4life/2ac423faaafee1c282c0cb5c5dc145ac to your computer and use it in GitHub Desktop.
Progressive Loot Tables
{
"type": "minecraft:block",
"pools": [
{
"rolls": 1,
"entries": [
{
"type": "minecraft:alternatives",
"children": [
{
"type": "minecraft:item",
"conditions": [
{
"condition": "minecraft:entity_scores",
"scores": {
"miner": 3.0
},
"entity": "this"
}
],
"name": "minecraft:iron_block"
},
{
"type": "minecraft:item",
"conditions": [
{
"condition": "minecraft:entity_scores",
"scores": {
"miner": 2.0
},
"entity": "this"
}
],
"name": "minecraft:iron_ingot"
},
{
"type": "minecraft:item",
"conditions": [
{
"condition": "minecraft:entity_scores",
"scores": {
"miner": 1.0
},
"entity": "this"
}
],
"name": "minecraft:iron_nugget"
},
{
"type": "minecraft:item",
"name": "minecraft:cobblestone"
}
]
}
],
"conditions": [
{
"condition": "minecraft:survives_explosion"
}
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment