diff --git a/src/main/resources/data/minecraft/loot_table/blocks/tall_grass.json b/src/main/resources/data/minecraft/loot_table/blocks/tall_grass.json index 80bf3cd..3603eb0 100644 --- a/src/main/resources/data/minecraft/loot_table/blocks/tall_grass.json +++ b/src/main/resources/data/minecraft/loot_table/blocks/tall_grass.json @@ -2,81 +2,43 @@ "type": "minecraft:block", "pools": [ { - "rolls": { - "type": "minecraft:constant", - "value": 1.0 - }, "entries": [ { "type": "minecraft:alternatives", "children": [ { "type": "minecraft:item", - "name": "minecraft:short_grass", - "functions": [ - { - "function": "minecraft:set_count", - "count": { - "type": "minecraft:constant", - "value": 2.0 - } - } - ], - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "sub_predicates": { - "minecraft:tool": "minecraft:tool/can_shear" - } - } - } - ] + "condition": "minecraft:tool/can_shear", + "name": "minecraft:tall_grass" }, { "type": "minecraft:item", - "name": "minecraft:wheat_seeds", - "conditions": [ - { - "condition": "minecraft:random_chance", - "chance": 0.125 - } - ] + "condition": { + "type": "minecraft:random_chance", + "chance": 0.125 + }, + "name": "quickly:canolaseed" + }, + { + "type": "minecraft:item", + "condition": { + "type": "minecraft:random_chance", + "chance": 0.125 + }, + "name": "minecraft:beetroot_seeds" + }, + { + "type": "minecraft:item", + "condition": { + "type": "minecraft:random_chance", + "chance": 0.125 + }, + "name": "quickly:salpeter" } ] } - ] - }, - { - "rolls": { - "type": "minecraft:constant", - "value": 1.0 - }, - "conditions": [ - { - "condition": "minecraft:inverted", - "term": { - "condition": "minecraft:match_tool", - "predicate": { - "sub_predicates": { - "minecraft:tool": "minecraft:tool/can_shear" - } - } - } - } ], - "entries": [ - { - "type": "minecraft:item", - "name": "quickly:canolaseed", - "conditions": [ - { - "condition": "minecraft:random_chance", - "chance": 0.05 - } - ] - } - ] + "rolls": 1.0 } ] }