From 54229c2ce1fb646e8ecd3af7e05c22ddb2a4ec85 Mon Sep 17 00:00:00 2001 From: Jacob Farley Date: Mon, 7 Sep 2020 10:54:46 -0500 Subject: [PATCH] I suppose Netherite Pick turtle recipe is important. --- .../minecraft/netherite_pickaxe.json | 19 +++++++++++++++++++ .../minecraft/netherite_pickaxe.json | 19 +++++++++++++++++++ 2 files changed, 38 insertions(+) create mode 100644 src/main/resources/data/computercraft/recipes/turtle_advanced/minecraft/netherite_pickaxe.json create mode 100644 src/main/resources/data/computercraft/recipes/turtle_normal/minecraft/netherite_pickaxe.json diff --git a/src/main/resources/data/computercraft/recipes/turtle_advanced/minecraft/netherite_pickaxe.json b/src/main/resources/data/computercraft/recipes/turtle_advanced/minecraft/netherite_pickaxe.json new file mode 100644 index 000000000..7f8aae745 --- /dev/null +++ b/src/main/resources/data/computercraft/recipes/turtle_advanced/minecraft/netherite_pickaxe.json @@ -0,0 +1,19 @@ +{ + "type": "computercraft:impostor_shaped", + "group": "computercraft:turtle_advanced", + "pattern": [ + "#T" + ], + "key": { + "#": { + "item": "computercraft:turtle_advanced" + }, + "T": { + "item": "minecraft:netherite_pickaxe" + } + }, + "result": { + "item": "computercraft:turtle_advanced", + "nbt": "{RightUpgrade:\"minecraft:netherite_pickaxe\"}" + } +} \ No newline at end of file diff --git a/src/main/resources/data/computercraft/recipes/turtle_normal/minecraft/netherite_pickaxe.json b/src/main/resources/data/computercraft/recipes/turtle_normal/minecraft/netherite_pickaxe.json new file mode 100644 index 000000000..c1419520b --- /dev/null +++ b/src/main/resources/data/computercraft/recipes/turtle_normal/minecraft/netherite_pickaxe.json @@ -0,0 +1,19 @@ +{ + "type": "computercraft:impostor_shaped", + "group": "computercraft:turtle_normal", + "pattern": [ + "#T" + ], + "key": { + "#": { + "item": "computercraft:turtle_normal" + }, + "T": { + "item": "minecraft:netherite_pickaxe" + } + }, + "result": { + "item": "computercraft:turtle_normal", + "nbt": "{RightUpgrade:\"minecraft:netherite_pickaxe\"}" + } +} \ No newline at end of file