diff --git a/overrides/global_packs/mc_rebalance_datapack/data/minecraft/loot_table/chests/ruined_portal.json b/overrides/global_packs/mc_rebalance_datapack/data/minecraft/loot_table/chests/ruined_portal.json index ae87d63..77630b6 100644 --- a/overrides/global_packs/mc_rebalance_datapack/data/minecraft/loot_table/chests/ruined_portal.json +++ b/overrides/global_packs/mc_rebalance_datapack/data/minecraft/loot_table/chests/ruined_portal.json @@ -65,25 +65,9 @@ { "type": "minecraft:item", "functions": [ - {"function": "minecraft:enchant_randomly", "options": "#minecraft:on_random_loot"}, - { - "function": "minecraft:set_components", - "components": { - "tool": { - "rules": [ - {"blocks": "#minecraft:incorrect_for_wooden_tool", "correct_for_drops": false}, - {"blocks": "#mineable/pickaxe", "speed": 2.0, "correct_for_drops": true}, - {"blocks": "#mineable/axe", "speed": 2.0, "correct_for_drops": true}, - {"blocks": "#mineable/shovel", "speed": 2.0, "correct_for_drops": true}, - {"blocks": "#mineable/hoe", "speed": 2.0, "correct_for_drops": true} - ] - }, - "custom_name": "{'text':'Wooden Paxel','italic':false}", - "custom_model_data": 74831 - } - } + {"function": "minecraft:enchant_randomly", "options": "#minecraft:on_random_loot"} ], - "name": "minecraft:wooden_shovel", + "name": "mc_rebalance:wooden_paxel", "weight": 35 }, { diff --git a/overrides/global_packs/mc_rebalance_datapack/data/minecraft/recipe/golden_axe.json b/overrides/global_packs/mc_rebalance_datapack/data/minecraft/recipe/golden_axe.json deleted file mode 100644 index 57bec7f..0000000 --- a/overrides/global_packs/mc_rebalance_datapack/data/minecraft/recipe/golden_axe.json +++ /dev/null @@ -1,29 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "category": "equipment", - "key": { - "#": { - "item": "minecraft:stick" - }, - "X": { - "item": "minecraft:gold_ingot" - } - }, - "pattern": [ - "XX", - "X#", - " #" - ], - "result": { - "count": 1, - "id": "minecraft:golden_axe", - "components": { - "tool": { - "rules": [ - {"blocks": "#minecraft:incorrect_for_gold_tool", "correct_for_drops": false}, - {"blocks": "#mineable/axe", "speed": 8.0, "correct_for_drops": true} - ] - } - } - } -} diff --git a/overrides/global_packs/mc_rebalance_datapack/data/minecraft/recipe/golden_hoe.json b/overrides/global_packs/mc_rebalance_datapack/data/minecraft/recipe/golden_hoe.json deleted file mode 100644 index 13084d8..0000000 --- a/overrides/global_packs/mc_rebalance_datapack/data/minecraft/recipe/golden_hoe.json +++ /dev/null @@ -1,29 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "category": "equipment", - "key": { - "#": { - "item": "minecraft:stick" - }, - "X": { - "item": "minecraft:gold_ingot" - } - }, - "pattern": [ - "XX", - " #", - " #" - ], - "result": { - "count": 1, - "id": "minecraft:golden_hoe", - "components": { - "tool": { - "rules": [ - {"blocks": "#minecraft:incorrect_for_gold_tool", "correct_for_drops": false}, - {"blocks": "#mineable/hoe", "speed": 8.0, "correct_for_drops": true} - ] - } - } - } -} diff --git a/overrides/global_packs/mc_rebalance_datapack/data/minecraft/recipe/golden_pickaxe.json b/overrides/global_packs/mc_rebalance_datapack/data/minecraft/recipe/golden_pickaxe.json deleted file mode 100644 index 3cfcef0..0000000 --- a/overrides/global_packs/mc_rebalance_datapack/data/minecraft/recipe/golden_pickaxe.json +++ /dev/null @@ -1,29 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "category": "equipment", - "key": { - "#": { - "item": "minecraft:stick" - }, - "X": { - "item": "minecraft:gold_ingot" - } - }, - "pattern": [ - "XXX", - " # ", - " # " - ], - "result": { - "count": 1, - "id": "minecraft:golden_pickaxe", - "components": { - "tool": { - "rules": [ - {"blocks": "#minecraft:incorrect_for_gold_tool", "correct_for_drops": false}, - {"blocks": "#mineable/pickaxe", "speed": 8.0, "correct_for_drops": true} - ] - } - } - } -} diff --git a/overrides/global_packs/mc_rebalance_datapack/data/minecraft/recipe/golden_shovel.json b/overrides/global_packs/mc_rebalance_datapack/data/minecraft/recipe/golden_shovel.json deleted file mode 100644 index 87ae1a8..0000000 --- a/overrides/global_packs/mc_rebalance_datapack/data/minecraft/recipe/golden_shovel.json +++ /dev/null @@ -1,29 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "category": "equipment", - "key": { - "#": { - "item": "minecraft:stick" - }, - "X": { - "item": "minecraft:gold_ingot" - } - }, - "pattern": [ - "X", - "#", - "#" - ], - "result": { - "count": 1, - "id": "minecraft:golden_shovel", - "components": { - "tool": { - "rules": [ - {"blocks": "#minecraft:incorrect_for_gold_tool", "correct_for_drops": false}, - {"blocks": "#mineable/shovel", "speed": 8.0, "correct_for_drops": true} - ] - } - } - } -}