From 027df4ef69cd66ea57373e4ba4be66fafc0e63c8 Mon Sep 17 00:00:00 2001 From: Steven Tracey <70534545+nevetS-718@users.noreply.github.com> Date: Fri, 20 Nov 2020 07:28:49 -0500 Subject: [PATCH] Add files via upload --- .../loot_tables/entities/villager.json | 2 +- .../tags/blocks/beacon_base_blocks.json | 6 ++++ .../blocks/gold_infused_netherite_block.json | 2 +- .../loot_tables/blocks/platinum_block.json | 19 +++++++++++++ .../loot_tables/blocks/platinum_ore.json | 28 +++++++++++++++++++ .../data/vanilla/recipes/emerald_axe.json | 2 +- .../data/vanilla/recipes/emerald_boots.json | 2 +- .../vanilla/recipes/emerald_chestplate.json | 2 +- .../data/vanilla/recipes/emerald_helmet.json | 2 +- .../data/vanilla/recipes/emerald_hoe.json | 2 +- .../vanilla/recipes/emerald_leggings.json | 2 +- .../data/vanilla/recipes/emerald_pickaxe.json | 2 +- .../data/vanilla/recipes/emerald_shovel.json | 2 +- .../data/vanilla/recipes/emerald_sword.json | 2 +- .../data/vanilla/recipes/platinum_axe.json | 19 +++++++++++++ .../data/vanilla/recipes/platinum_block.json | 17 +++++++++++ .../data/vanilla/recipes/platinum_boots.json | 16 +++++++++++ .../vanilla/recipes/platinum_chestplate.json | 17 +++++++++++ .../data/vanilla/recipes/platinum_helmet.json | 16 +++++++++++ .../data/vanilla/recipes/platinum_hoe.json | 20 +++++++++++++ .../data/vanilla/recipes/platinum_ingot.json | 9 ++++++ .../recipes/platinum_ingot_from_blasting.json | 9 ++++++ .../recipes/platinum_ingot_from_block.json | 15 ++++++++++ .../recipes/platinum_ingot_from_nuggets.json | 17 +++++++++++ .../vanilla/recipes/platinum_leggings.json | 17 +++++++++++ .../recipes/platinum_nugget_from_ingot.json | 15 ++++++++++ .../vanilla/recipes/platinum_pickaxe.json | 20 +++++++++++++ .../data/vanilla/recipes/platinum_shovel.json | 20 +++++++++++++ .../data/vanilla/recipes/platinum_sword.json | 20 +++++++++++++ .../vanilla/recipes/raw_villager_meat.json | 4 +-- ...w_villager_meat_from_campfire_cooking.json | 4 +-- .../raw_villager_meat_from_smoking.json | 4 +-- 32 files changed, 317 insertions(+), 17 deletions(-) create mode 100644 src/main/resources/data/minecraft/tags/blocks/beacon_base_blocks.json create mode 100644 src/main/resources/data/vanilla/loot_tables/blocks/platinum_block.json create mode 100644 src/main/resources/data/vanilla/loot_tables/blocks/platinum_ore.json create mode 100644 src/main/resources/data/vanilla/recipes/platinum_axe.json create mode 100644 src/main/resources/data/vanilla/recipes/platinum_block.json create mode 100644 src/main/resources/data/vanilla/recipes/platinum_boots.json create mode 100644 src/main/resources/data/vanilla/recipes/platinum_chestplate.json create mode 100644 src/main/resources/data/vanilla/recipes/platinum_helmet.json create mode 100644 src/main/resources/data/vanilla/recipes/platinum_hoe.json create mode 100644 src/main/resources/data/vanilla/recipes/platinum_ingot.json create mode 100644 src/main/resources/data/vanilla/recipes/platinum_ingot_from_blasting.json create mode 100644 src/main/resources/data/vanilla/recipes/platinum_ingot_from_block.json create mode 100644 src/main/resources/data/vanilla/recipes/platinum_ingot_from_nuggets.json create mode 100644 src/main/resources/data/vanilla/recipes/platinum_leggings.json create mode 100644 src/main/resources/data/vanilla/recipes/platinum_nugget_from_ingot.json create mode 100644 src/main/resources/data/vanilla/recipes/platinum_pickaxe.json create mode 100644 src/main/resources/data/vanilla/recipes/platinum_shovel.json create mode 100644 src/main/resources/data/vanilla/recipes/platinum_sword.json diff --git a/src/main/resources/data/minecraft/loot_tables/entities/villager.json b/src/main/resources/data/minecraft/loot_tables/entities/villager.json index 2819666..f626832 100644 --- a/src/main/resources/data/minecraft/loot_tables/entities/villager.json +++ b/src/main/resources/data/minecraft/loot_tables/entities/villager.json @@ -6,7 +6,7 @@ { "type": "item", "weight": 1, - "name": "leatherite:raw_villager_meat", + "name": "vanilla:raw_villager_meat", "functions": [ { "function": "set_count", diff --git a/src/main/resources/data/minecraft/tags/blocks/beacon_base_blocks.json b/src/main/resources/data/minecraft/tags/blocks/beacon_base_blocks.json new file mode 100644 index 0000000..d767695 --- /dev/null +++ b/src/main/resources/data/minecraft/tags/blocks/beacon_base_blocks.json @@ -0,0 +1,6 @@ +{ + "replace": false, + "values": [ + "vanilla:platinum_block" + ] +} \ No newline at end of file diff --git a/src/main/resources/data/vanilla/loot_tables/blocks/gold_infused_netherite_block.json b/src/main/resources/data/vanilla/loot_tables/blocks/gold_infused_netherite_block.json index 5d97676..3b9487a 100644 --- a/src/main/resources/data/vanilla/loot_tables/blocks/gold_infused_netherite_block.json +++ b/src/main/resources/data/vanilla/loot_tables/blocks/gold_infused_netherite_block.json @@ -6,7 +6,7 @@ "entries": [ { "type": "minecraft:item", - "name": "leatherite:gold_infused_netherite_block" + "name": "vanilla:gold_infused_netherite_block" } ], "conditions": [ diff --git a/src/main/resources/data/vanilla/loot_tables/blocks/platinum_block.json b/src/main/resources/data/vanilla/loot_tables/blocks/platinum_block.json new file mode 100644 index 0000000..b63d0f8 --- /dev/null +++ b/src/main/resources/data/vanilla/loot_tables/blocks/platinum_block.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "vanilla:platinum_block" + } + ], + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ] + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/vanilla/loot_tables/blocks/platinum_ore.json b/src/main/resources/data/vanilla/loot_tables/blocks/platinum_ore.json new file mode 100644 index 0000000..2add8b3 --- /dev/null +++ b/src/main/resources/data/vanilla/loot_tables/blocks/platinum_ore.json @@ -0,0 +1,28 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "item", + "weight": 1, + "name": "vanilla:platinum_nugget", + "functions": [ + { + "function": "set_count", + "count": { + "min": 3, + "max": 7 + } + } + ] + } + ], + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ] + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/vanilla/recipes/emerald_axe.json b/src/main/resources/data/vanilla/recipes/emerald_axe.json index e5c4ef6..fc287d0 100644 --- a/src/main/resources/data/vanilla/recipes/emerald_axe.json +++ b/src/main/resources/data/vanilla/recipes/emerald_axe.json @@ -14,6 +14,6 @@ } }, "result": { - "item": "leatherite:emerald_axe" + "item": "vanilla:emerald_axe" } } \ No newline at end of file diff --git a/src/main/resources/data/vanilla/recipes/emerald_boots.json b/src/main/resources/data/vanilla/recipes/emerald_boots.json index ae7953b..6166e3e 100644 --- a/src/main/resources/data/vanilla/recipes/emerald_boots.json +++ b/src/main/resources/data/vanilla/recipes/emerald_boots.json @@ -10,7 +10,7 @@ } }, "result": { - "item": "leatherite:emerald_boots", + "item": "vanilla:emerald_boots", "count": 1 } } \ No newline at end of file diff --git a/src/main/resources/data/vanilla/recipes/emerald_chestplate.json b/src/main/resources/data/vanilla/recipes/emerald_chestplate.json index 81aafa5..2a85cc5 100644 --- a/src/main/resources/data/vanilla/recipes/emerald_chestplate.json +++ b/src/main/resources/data/vanilla/recipes/emerald_chestplate.json @@ -11,7 +11,7 @@ } }, "result": { - "item": "leatherite:emerald_chestplate", + "item": "vanilla:emerald_chestplate", "count": 1 } } \ No newline at end of file diff --git a/src/main/resources/data/vanilla/recipes/emerald_helmet.json b/src/main/resources/data/vanilla/recipes/emerald_helmet.json index dc1f6c2..dfff818 100644 --- a/src/main/resources/data/vanilla/recipes/emerald_helmet.json +++ b/src/main/resources/data/vanilla/recipes/emerald_helmet.json @@ -10,7 +10,7 @@ } }, "result": { - "item": "leatherite:emerald_helmet", + "item": "vanilla:emerald_helmet", "count": 1 } } \ No newline at end of file diff --git a/src/main/resources/data/vanilla/recipes/emerald_hoe.json b/src/main/resources/data/vanilla/recipes/emerald_hoe.json index 05c959f..71e1534 100644 --- a/src/main/resources/data/vanilla/recipes/emerald_hoe.json +++ b/src/main/resources/data/vanilla/recipes/emerald_hoe.json @@ -14,7 +14,7 @@ } }, "result": { - "item": "leatherite:emerald_hoe", + "item": "vanilla:emerald_hoe", "count": 1 } } \ No newline at end of file diff --git a/src/main/resources/data/vanilla/recipes/emerald_leggings.json b/src/main/resources/data/vanilla/recipes/emerald_leggings.json index 87b0ce9..e25263c 100644 --- a/src/main/resources/data/vanilla/recipes/emerald_leggings.json +++ b/src/main/resources/data/vanilla/recipes/emerald_leggings.json @@ -11,7 +11,7 @@ } }, "result": { - "item": "leatherite:emerald_leggings", + "item": "vanilla:emerald_leggings", "count": 1 } } \ No newline at end of file diff --git a/src/main/resources/data/vanilla/recipes/emerald_pickaxe.json b/src/main/resources/data/vanilla/recipes/emerald_pickaxe.json index 7abb8ea..937af26 100644 --- a/src/main/resources/data/vanilla/recipes/emerald_pickaxe.json +++ b/src/main/resources/data/vanilla/recipes/emerald_pickaxe.json @@ -14,7 +14,7 @@ } }, "result": { - "item": "leatherite:emerald_pickaxe", + "item": "vanilla:emerald_pickaxe", "count": 1 } } \ No newline at end of file diff --git a/src/main/resources/data/vanilla/recipes/emerald_shovel.json b/src/main/resources/data/vanilla/recipes/emerald_shovel.json index 9ae832e..42940c7 100644 --- a/src/main/resources/data/vanilla/recipes/emerald_shovel.json +++ b/src/main/resources/data/vanilla/recipes/emerald_shovel.json @@ -14,7 +14,7 @@ } }, "result": { - "item": "leatherite:emerald_shovel", + "item": "vanilla:emerald_shovel", "count": 1 } } \ No newline at end of file diff --git a/src/main/resources/data/vanilla/recipes/emerald_sword.json b/src/main/resources/data/vanilla/recipes/emerald_sword.json index 9d47ac9..fb7a0fc 100644 --- a/src/main/resources/data/vanilla/recipes/emerald_sword.json +++ b/src/main/resources/data/vanilla/recipes/emerald_sword.json @@ -14,7 +14,7 @@ } }, "result": { - "item": "leatherite:emerald_sword", + "item": "vanilla:emerald_sword", "count": 1 } } \ No newline at end of file diff --git a/src/main/resources/data/vanilla/recipes/platinum_axe.json b/src/main/resources/data/vanilla/recipes/platinum_axe.json new file mode 100644 index 0000000..fa2897f --- /dev/null +++ b/src/main/resources/data/vanilla/recipes/platinum_axe.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "XX", + "X#", + " #" + ], + "key": { + "#": { + "item": "minecraft:stick" + }, + "X": { + "item": "vanilla:platinum_ingot" + } + }, + "result": { + "item": "vanilla:platinum_axe" + } +} \ No newline at end of file diff --git a/src/main/resources/data/vanilla/recipes/platinum_block.json b/src/main/resources/data/vanilla/recipes/platinum_block.json new file mode 100644 index 0000000..95880bb --- /dev/null +++ b/src/main/resources/data/vanilla/recipes/platinum_block.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "###", + "###" + ], + "key": { + "#": { + "item": "vanilla:platinum_ingot" + } + }, + "result": { + "item": "vanilla:platinum_block", + "count": 1 + } +} \ No newline at end of file diff --git a/src/main/resources/data/vanilla/recipes/platinum_boots.json b/src/main/resources/data/vanilla/recipes/platinum_boots.json new file mode 100644 index 0000000..0f8929d --- /dev/null +++ b/src/main/resources/data/vanilla/recipes/platinum_boots.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "# #", + "# #" + ], + "key": { + "#": { + "item": "vanilla:platinum_ingot" + } + }, + "result": { + "item": "vanilla:platinum_boots", + "count": 1 + } +} \ No newline at end of file diff --git a/src/main/resources/data/vanilla/recipes/platinum_chestplate.json b/src/main/resources/data/vanilla/recipes/platinum_chestplate.json new file mode 100644 index 0000000..39451a1 --- /dev/null +++ b/src/main/resources/data/vanilla/recipes/platinum_chestplate.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "# #", + "###", + "###" + ], + "key": { + "#": { + "item": "vanilla:platinum_ingot" + } + }, + "result": { + "item": "vanilla:platinum_chestplate", + "count": 1 + } +} \ No newline at end of file diff --git a/src/main/resources/data/vanilla/recipes/platinum_helmet.json b/src/main/resources/data/vanilla/recipes/platinum_helmet.json new file mode 100644 index 0000000..0dedf8a --- /dev/null +++ b/src/main/resources/data/vanilla/recipes/platinum_helmet.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "# #" + ], + "key": { + "#": { + "item": "vanilla:platinum_ingot" + } + }, + "result": { + "item": "vanilla:platinum_helmet", + "count": 1 + } +} \ No newline at end of file diff --git a/src/main/resources/data/vanilla/recipes/platinum_hoe.json b/src/main/resources/data/vanilla/recipes/platinum_hoe.json new file mode 100644 index 0000000..1719bf1 --- /dev/null +++ b/src/main/resources/data/vanilla/recipes/platinum_hoe.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "##", + " /", + " /" + ], + "key": { + "#": { + "item": "vanilla:platinum_ingot" + }, + "/": { + "item": "minecraft:stick" + } + }, + "result": { + "item": "vanilla:platinum_hoe", + "count": 1 + } +} \ No newline at end of file diff --git a/src/main/resources/data/vanilla/recipes/platinum_ingot.json b/src/main/resources/data/vanilla/recipes/platinum_ingot.json new file mode 100644 index 0000000..1688a60 --- /dev/null +++ b/src/main/resources/data/vanilla/recipes/platinum_ingot.json @@ -0,0 +1,9 @@ +{ + "type": "minecraft:smelting", + "ingredient": { + "item": "vanilla:platinum_ore" + }, + "result": "vanilla:platinum_ingot", + "experience": 2.5, + "cookingtime": 200 +} \ No newline at end of file diff --git a/src/main/resources/data/vanilla/recipes/platinum_ingot_from_blasting.json b/src/main/resources/data/vanilla/recipes/platinum_ingot_from_blasting.json new file mode 100644 index 0000000..3303a14 --- /dev/null +++ b/src/main/resources/data/vanilla/recipes/platinum_ingot_from_blasting.json @@ -0,0 +1,9 @@ +{ + "type": "minecraft:blasting", + "ingredient": { + "item": "vanilla:platinum_ore" + }, + "result": "vanilla:platinum_ingot", + "experience": 2.5, + "cookingtime": 100 +} \ No newline at end of file diff --git a/src/main/resources/data/vanilla/recipes/platinum_ingot_from_block.json b/src/main/resources/data/vanilla/recipes/platinum_ingot_from_block.json new file mode 100644 index 0000000..6438da2 --- /dev/null +++ b/src/main/resources/data/vanilla/recipes/platinum_ingot_from_block.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "#" + ], + "key": { + "#": { + "item": "vanilla:platinum_block" + } + }, + "result": { + "item": "vanilla:platinum_ingot", + "count": 9 + } +} \ No newline at end of file diff --git a/src/main/resources/data/vanilla/recipes/platinum_ingot_from_nuggets.json b/src/main/resources/data/vanilla/recipes/platinum_ingot_from_nuggets.json new file mode 100644 index 0000000..5caef82 --- /dev/null +++ b/src/main/resources/data/vanilla/recipes/platinum_ingot_from_nuggets.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "###", + "###" + ], + "key": { + "#": { + "item": "vanilla:platinum_nugget" + } + }, + "result": { + "item": "vanilla:platinum_ingot", + "count": 1 + } +} \ No newline at end of file diff --git a/src/main/resources/data/vanilla/recipes/platinum_leggings.json b/src/main/resources/data/vanilla/recipes/platinum_leggings.json new file mode 100644 index 0000000..d190681 --- /dev/null +++ b/src/main/resources/data/vanilla/recipes/platinum_leggings.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "# #", + "# #" + ], + "key": { + "#": { + "item": "vanilla:platinum_ingot" + } + }, + "result": { + "item": "vanilla:platinum_leggings", + "count": 1 + } +} \ No newline at end of file diff --git a/src/main/resources/data/vanilla/recipes/platinum_nugget_from_ingot.json b/src/main/resources/data/vanilla/recipes/platinum_nugget_from_ingot.json new file mode 100644 index 0000000..82d581d --- /dev/null +++ b/src/main/resources/data/vanilla/recipes/platinum_nugget_from_ingot.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "#" + ], + "key": { + "#": { + "item": "vanilla:platinum_ingot" + } + }, + "result": { + "item": "vanilla:platinum_nugget", + "count": 9 + } +} \ No newline at end of file diff --git a/src/main/resources/data/vanilla/recipes/platinum_pickaxe.json b/src/main/resources/data/vanilla/recipes/platinum_pickaxe.json new file mode 100644 index 0000000..dadbc29 --- /dev/null +++ b/src/main/resources/data/vanilla/recipes/platinum_pickaxe.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + " / ", + " / " + ], + "key": { + "#": { + "item": "vanilla:platinum_ingot" + }, + "/": { + "item": "minecraft:stick" + } + }, + "result": { + "item": "vanilla:platinum_pickaxe", + "count": 1 + } +} \ No newline at end of file diff --git a/src/main/resources/data/vanilla/recipes/platinum_shovel.json b/src/main/resources/data/vanilla/recipes/platinum_shovel.json new file mode 100644 index 0000000..25da6af --- /dev/null +++ b/src/main/resources/data/vanilla/recipes/platinum_shovel.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "#", + "/", + "/" + ], + "key": { + "#": { + "item": "vanilla:platinum_ingot" + }, + "/": { + "item": "minecraft:stick" + } + }, + "result": { + "item": "vanilla:platinum_shovel", + "count": 1 + } +} \ No newline at end of file diff --git a/src/main/resources/data/vanilla/recipes/platinum_sword.json b/src/main/resources/data/vanilla/recipes/platinum_sword.json new file mode 100644 index 0000000..8cf2737 --- /dev/null +++ b/src/main/resources/data/vanilla/recipes/platinum_sword.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "#", + "#", + "/" + ], + "key": { + "#": { + "item": "vanilla:platinum_ingot" + }, + "/": { + "item": "minecraft:stick" + } + }, + "result": { + "item": "vanilla:platinum_sword", + "count": 1 + } +} \ No newline at end of file diff --git a/src/main/resources/data/vanilla/recipes/raw_villager_meat.json b/src/main/resources/data/vanilla/recipes/raw_villager_meat.json index f69ef20..3504427 100644 --- a/src/main/resources/data/vanilla/recipes/raw_villager_meat.json +++ b/src/main/resources/data/vanilla/recipes/raw_villager_meat.json @@ -1,9 +1,9 @@ { "type": "minecraft:smelting", "ingredient": { - "item": "leatherite:raw_villager_meat" + "item": "vanilla:raw_villager_meat" }, - "result": "leatherite:cooked_villager_meat", + "result": "vanilla:cooked_villager_meat", "experience": 0.3, "cookingtime": 200 } \ No newline at end of file diff --git a/src/main/resources/data/vanilla/recipes/raw_villager_meat_from_campfire_cooking.json b/src/main/resources/data/vanilla/recipes/raw_villager_meat_from_campfire_cooking.json index b7ff628..5e464d0 100644 --- a/src/main/resources/data/vanilla/recipes/raw_villager_meat_from_campfire_cooking.json +++ b/src/main/resources/data/vanilla/recipes/raw_villager_meat_from_campfire_cooking.json @@ -1,9 +1,9 @@ { "type": "minecraft:campfire_cooking", "ingredient": { -"item": "leatherite:raw_villager_meat" +"item": "vanilla:raw_villager_meat" }, -"result": "leatherite:cooked_villager_meat", +"result": "vanilla:cooked_villager_meat", "experience": 0.3, "cookingtime": 400 } \ No newline at end of file diff --git a/src/main/resources/data/vanilla/recipes/raw_villager_meat_from_smoking.json b/src/main/resources/data/vanilla/recipes/raw_villager_meat_from_smoking.json index 8e8cc96..c3bcace 100644 --- a/src/main/resources/data/vanilla/recipes/raw_villager_meat_from_smoking.json +++ b/src/main/resources/data/vanilla/recipes/raw_villager_meat_from_smoking.json @@ -1,9 +1,9 @@ { "type": "minecraft:smoking", "ingredient": { - "item": "leatherite:raw_villager_meat" + "item": "vanilla:raw_villager_meat" }, - "result": "leatherite:cooked_villager_meat", + "result": "vanilla:cooked_villager_meat", "experience": 0.3, "cookingtime": 100 } \ No newline at end of file