malloc-datapack/data/minecraft/loot_tables/blocks/stone.json

54 lines
1.3 KiB
JSON
Raw Normal View History

2022-09-10 12:28:27 +00:00
{
"type": "minecraft:block",
"pools": [
{
"rolls": 1,
"bonus_rolls": 0,
"entries": [
{
"type": "minecraft:alternatives",
"children": [
{
"type": "minecraft:item",
"name": "minecraft:stone",
"conditions": [
{
"condition": "minecraft:match_tool",
"predicate": {
"enchantments": [
{
"enchantment": "minecraft:silk_touch",
"levels": {
"min": 1
}
}
]
}
}
]
},
{
"type": "minecraft:group",
"children": [
{
"type": "minecraft:loot_table",
"name": "malloc:items/grist_coin"
},
{
"type": "minecraft:item",
"name": "minecraft:cobblestone"
}
],
"conditions": [
{
"condition": "minecraft:survives_explosion"
}
]
}
]
}
]
}
]
}