diff --git a/src/main/resources/data/vanilla/recipes/diamond_apple.json b/src/main/resources/data/vanilla/recipes/diamond_apple.json new file mode 100644 index 0000000..5b3b8d9 --- /dev/null +++ b/src/main/resources/data/vanilla/recipes/diamond_apple.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "iii", + "iAi", + "iii" + ], + "key": { + "i": { + "item": "minecraft:diamond" + }, + "A": { + "item": "minecraft:apple" + } + }, + "result": { + "item": "vanilla:diamond_apple", + "count": 1 + } +} \ No newline at end of file diff --git a/src/main/resources/data/vanilla/recipes/emerald_apple.json b/src/main/resources/data/vanilla/recipes/emerald_apple.json new file mode 100644 index 0000000..bf20561 --- /dev/null +++ b/src/main/resources/data/vanilla/recipes/emerald_apple.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "iii", + "iAi", + "iii" + ], + "key": { + "i": { + "item": "minecraft:emerald" + }, + "A": { + "item": "minecraft:apple" + } + }, + "result": { + "item": "vanilla:emerald_apple", + "count": 1 + } +} \ No newline at end of file diff --git a/src/main/resources/data/vanilla/recipes/enchanted_diamond_apple.json b/src/main/resources/data/vanilla/recipes/enchanted_diamond_apple.json new file mode 100644 index 0000000..5b9eff6 --- /dev/null +++ b/src/main/resources/data/vanilla/recipes/enchanted_diamond_apple.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "iii", + "iAi", + "iii" + ], + "key": { + "i": { + "item": "minecraft:diamond_block" + }, + "A": { + "item": "minecraft:apple" + } + }, + "result": { + "item": "vanilla:enchanted_diamond_apple", + "count": 1 + } +} \ No newline at end of file diff --git a/src/main/resources/data/vanilla/recipes/enchanted_emerald_apple.json b/src/main/resources/data/vanilla/recipes/enchanted_emerald_apple.json new file mode 100644 index 0000000..aec153d --- /dev/null +++ b/src/main/resources/data/vanilla/recipes/enchanted_emerald_apple.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "iii", + "iAi", + "iii" + ], + "key": { + "i": { + "item": "minecraft:emerald_block" + }, + "A": { + "item": "minecraft:apple" + } + }, + "result": { + "item": "vanilla:enchanted_emerald_apple", + "count": 1 + } +} \ No newline at end of file diff --git a/src/main/resources/data/vanilla/recipes/enchanted_iron_apple.json b/src/main/resources/data/vanilla/recipes/enchanted_iron_apple.json new file mode 100644 index 0000000..f84d99c --- /dev/null +++ b/src/main/resources/data/vanilla/recipes/enchanted_iron_apple.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "#A#", + "###" + ], + "key": { + "#": { + "item": "minecraft:iron_block" + }, + "A": { + "item": "minecraft:apple" + } + }, + "result": { + "item": "vanilla:enchanted_iron_apple", + "count": 1 + } +} \ No newline at end of file diff --git a/src/main/resources/data/vanilla/recipes/enchanted_platinum_apple.json b/src/main/resources/data/vanilla/recipes/enchanted_platinum_apple.json new file mode 100644 index 0000000..77b899b --- /dev/null +++ b/src/main/resources/data/vanilla/recipes/enchanted_platinum_apple.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "iii", + "iAi", + "iii" + ], + "key": { + "i": { + "item": "vanilla:platinum_block" + }, + "A": { + "item": "minecraft:apple" + } + }, + "result": { + "item": "vanilla:enchanted_platinum_apple", + "count": 1 + } +} \ No newline at end of file diff --git a/src/main/resources/data/vanilla/recipes/iron_apple.json b/src/main/resources/data/vanilla/recipes/iron_apple.json new file mode 100644 index 0000000..18b1626 --- /dev/null +++ b/src/main/resources/data/vanilla/recipes/iron_apple.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "iii", + "iAi", + "iii" + ], + "key": { + "i": { + "item": "minecraft:iron_ingot" + }, + "A": { + "item": "minecraft:apple" + } + }, + "result": { + "item": "vanilla:iron_apple", + "count": 1 + } +} \ No newline at end of file diff --git a/src/main/resources/data/vanilla/recipes/platinum_apple.json b/src/main/resources/data/vanilla/recipes/platinum_apple.json new file mode 100644 index 0000000..dc5afdc --- /dev/null +++ b/src/main/resources/data/vanilla/recipes/platinum_apple.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "iii", + "iAi", + "iii" + ], + "key": { + "i": { + "item": "vanilla:platinum_ingot" + }, + "A": { + "item": "minecraft:apple" + } + }, + "result": { + "item": "vanilla:platinum_apple", + "count": 1 + } +} \ No newline at end of file