From 0af559d775c569ba4c73803a6cc31da5f0a9f4f6 Mon Sep 17 00:00:00 2001 From: RubixDev Date: Mon, 27 Jun 2022 11:52:46 +0200 Subject: [PATCH] Add missing mangrove wood to `woodcutting` ( #39 ) and delete unused recipes --- src/main/java/de/rubixdev/rug/RugSettings.java | 3 +++ .../rug/recipes/woodcutting_acacia_stair.json | 8 -------- .../rug/recipes/woodcutting_birch_stair.json | 8 -------- .../rug/recipes/woodcutting_crimson_stair.json | 8 -------- .../rug/recipes/woodcutting_dark_oak_stair.json | 8 -------- .../rug/recipes/woodcutting_jungle_stair.json | 8 -------- .../rug/recipes/woodcutting_mangrove_fence.json | 8 ++++++++ .../rug/recipes/woodcutting_mangrove_slab.json | 8 ++++++++ .../rug/recipes/woodcutting_mangrove_stairs.json | 8 ++++++++ .../RugDataStorage/rug/recipes/woodcutting_oak_stair.json | 8 -------- .../rug/recipes/woodcutting_spruce_stair.json | 8 -------- .../rug/recipes/woodcutting_warped_stair.json | 8 -------- 12 files changed, 27 insertions(+), 64 deletions(-) delete mode 100644 src/main/resources/assets/rug/RugDataStorage/rug/recipes/woodcutting_acacia_stair.json delete mode 100644 src/main/resources/assets/rug/RugDataStorage/rug/recipes/woodcutting_birch_stair.json delete mode 100644 src/main/resources/assets/rug/RugDataStorage/rug/recipes/woodcutting_crimson_stair.json delete mode 100644 src/main/resources/assets/rug/RugDataStorage/rug/recipes/woodcutting_dark_oak_stair.json delete mode 100644 src/main/resources/assets/rug/RugDataStorage/rug/recipes/woodcutting_jungle_stair.json create mode 100644 src/main/resources/assets/rug/RugDataStorage/rug/recipes/woodcutting_mangrove_fence.json create mode 100644 src/main/resources/assets/rug/RugDataStorage/rug/recipes/woodcutting_mangrove_slab.json create mode 100644 src/main/resources/assets/rug/RugDataStorage/rug/recipes/woodcutting_mangrove_stairs.json delete mode 100644 src/main/resources/assets/rug/RugDataStorage/rug/recipes/woodcutting_oak_stair.json delete mode 100644 src/main/resources/assets/rug/RugDataStorage/rug/recipes/woodcutting_spruce_stair.json delete mode 100644 src/main/resources/assets/rug/RugDataStorage/rug/recipes/woodcutting_warped_stair.json diff --git a/src/main/java/de/rubixdev/rug/RugSettings.java b/src/main/java/de/rubixdev/rug/RugSettings.java index 4f68552..190da37 100644 --- a/src/main/java/de/rubixdev/rug/RugSettings.java +++ b/src/main/java/de/rubixdev/rug/RugSettings.java @@ -733,6 +733,9 @@ public String description() { "woodcutting_jungle_fence.json", "woodcutting_jungle_slab.json", "woodcutting_jungle_stairs.json", + "woodcutting_mangrove_fence.json", + "woodcutting_mangrove_slab.json", + "woodcutting_mangrove_stairs.json", "woodcutting_oak_fence.json", "woodcutting_oak_slab.json", "woodcutting_oak_stairs.json", diff --git a/src/main/resources/assets/rug/RugDataStorage/rug/recipes/woodcutting_acacia_stair.json b/src/main/resources/assets/rug/RugDataStorage/rug/recipes/woodcutting_acacia_stair.json deleted file mode 100644 index c5fd348..0000000 --- a/src/main/resources/assets/rug/RugDataStorage/rug/recipes/woodcutting_acacia_stair.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:acacia_planks" - }, - "result": "minecraft:acacia_stair", - "count": 1 -} \ No newline at end of file diff --git a/src/main/resources/assets/rug/RugDataStorage/rug/recipes/woodcutting_birch_stair.json b/src/main/resources/assets/rug/RugDataStorage/rug/recipes/woodcutting_birch_stair.json deleted file mode 100644 index 757deaf..0000000 --- a/src/main/resources/assets/rug/RugDataStorage/rug/recipes/woodcutting_birch_stair.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:birch_planks" - }, - "result": "minecraft:birch_stair", - "count": 1 -} \ No newline at end of file diff --git a/src/main/resources/assets/rug/RugDataStorage/rug/recipes/woodcutting_crimson_stair.json b/src/main/resources/assets/rug/RugDataStorage/rug/recipes/woodcutting_crimson_stair.json deleted file mode 100644 index 75997af..0000000 --- a/src/main/resources/assets/rug/RugDataStorage/rug/recipes/woodcutting_crimson_stair.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:crimson_planks" - }, - "result": "minecraft:crimson_stair", - "count": 1 -} \ No newline at end of file diff --git a/src/main/resources/assets/rug/RugDataStorage/rug/recipes/woodcutting_dark_oak_stair.json b/src/main/resources/assets/rug/RugDataStorage/rug/recipes/woodcutting_dark_oak_stair.json deleted file mode 100644 index e300ac3..0000000 --- a/src/main/resources/assets/rug/RugDataStorage/rug/recipes/woodcutting_dark_oak_stair.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:dark_oak_planks" - }, - "result": "minecraft:dark_oak_stair", - "count": 1 -} \ No newline at end of file diff --git a/src/main/resources/assets/rug/RugDataStorage/rug/recipes/woodcutting_jungle_stair.json b/src/main/resources/assets/rug/RugDataStorage/rug/recipes/woodcutting_jungle_stair.json deleted file mode 100644 index 79f0937..0000000 --- a/src/main/resources/assets/rug/RugDataStorage/rug/recipes/woodcutting_jungle_stair.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:jungle_planks" - }, - "result": "minecraft:jungle_stair", - "count": 1 -} \ No newline at end of file diff --git a/src/main/resources/assets/rug/RugDataStorage/rug/recipes/woodcutting_mangrove_fence.json b/src/main/resources/assets/rug/RugDataStorage/rug/recipes/woodcutting_mangrove_fence.json new file mode 100644 index 0000000..89c3b63 --- /dev/null +++ b/src/main/resources/assets/rug/RugDataStorage/rug/recipes/woodcutting_mangrove_fence.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:mangrove_planks" + }, + "result": "minecraft:mangrove_fence", + "count": 1 +} \ No newline at end of file diff --git a/src/main/resources/assets/rug/RugDataStorage/rug/recipes/woodcutting_mangrove_slab.json b/src/main/resources/assets/rug/RugDataStorage/rug/recipes/woodcutting_mangrove_slab.json new file mode 100644 index 0000000..15ac28e --- /dev/null +++ b/src/main/resources/assets/rug/RugDataStorage/rug/recipes/woodcutting_mangrove_slab.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:mangrove_planks" + }, + "result": "minecraft:mangrove_slab", + "count": 2 +} \ No newline at end of file diff --git a/src/main/resources/assets/rug/RugDataStorage/rug/recipes/woodcutting_mangrove_stairs.json b/src/main/resources/assets/rug/RugDataStorage/rug/recipes/woodcutting_mangrove_stairs.json new file mode 100644 index 0000000..4a2f763 --- /dev/null +++ b/src/main/resources/assets/rug/RugDataStorage/rug/recipes/woodcutting_mangrove_stairs.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:mangrove_planks" + }, + "result": "minecraft:mangrove_stairs", + "count": 1 +} \ No newline at end of file diff --git a/src/main/resources/assets/rug/RugDataStorage/rug/recipes/woodcutting_oak_stair.json b/src/main/resources/assets/rug/RugDataStorage/rug/recipes/woodcutting_oak_stair.json deleted file mode 100644 index ce3f342..0000000 --- a/src/main/resources/assets/rug/RugDataStorage/rug/recipes/woodcutting_oak_stair.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:oak_planks" - }, - "result": "minecraft:oak_stair", - "count": 1 -} \ No newline at end of file diff --git a/src/main/resources/assets/rug/RugDataStorage/rug/recipes/woodcutting_spruce_stair.json b/src/main/resources/assets/rug/RugDataStorage/rug/recipes/woodcutting_spruce_stair.json deleted file mode 100644 index b9c361f..0000000 --- a/src/main/resources/assets/rug/RugDataStorage/rug/recipes/woodcutting_spruce_stair.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:spruce_planks" - }, - "result": "minecraft:spruce_stair", - "count": 1 -} \ No newline at end of file diff --git a/src/main/resources/assets/rug/RugDataStorage/rug/recipes/woodcutting_warped_stair.json b/src/main/resources/assets/rug/RugDataStorage/rug/recipes/woodcutting_warped_stair.json deleted file mode 100644 index ad19e86..0000000 --- a/src/main/resources/assets/rug/RugDataStorage/rug/recipes/woodcutting_warped_stair.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:warped_planks" - }, - "result": "minecraft:warped_stair", - "count": 1 -} \ No newline at end of file