| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- {
- "type": "minecraft:block",
- "pools": [
- {
- "rolls": 1,
- "entries": [
- {
- "type": "minecraft:alternatives",
- "children": [
- {
- "type": "minecraft:item",
- "conditions": [
- {
- "condition": "minecraft:match_tool",
- "predicate": {
- "enchantments": [
- {
- "enchantment": "minecraft:silk_touch",
- "levels": {
- "min": 1
- }
- }
- ]
- }
- }
- ],
- "name": "minecraft:gravel"
- },
- {
- "type": "minecraft:alternatives",
- "conditions": [
- {
- "condition": "minecraft:survives_explosion"
- }
- ],
- "children": [
- {
- "type": "minecraft:item",
- "conditions": [
- {
- "condition": "minecraft:table_bonus",
- "enchantment": "minecraft:fortune",
- "chances": [
- 0.1,
- 0.14285715,
- 0.25,
- 1.0
- ]
- }
- ],
- "name": "minecraft:flint"
- },
- {
- "type": "minecraft:item",
- "name": "minecraft:gravel"
- }
- ]
- }
- ]
- }
- ]
- }
- ]
- }
|