From b42acd8ca755fe1a850ff92900fbea9f3d693e05 Mon Sep 17 00:00:00 2001 From: RubixDev Date: Sat, 3 Feb 2024 10:17:45 +0800 Subject: [PATCH] fix: add missing wood types to `woodcutting` and `moreBarkCrafting` --- gradle.properties | 2 +- src/main/java/de/rubixdev/rug/RugSettings.java | 10 ++++++++-- .../minecraft/recipes/cherry_wood.json | 17 +++++++++++++++++ .../minecraft/recipes/stripped_cherry_wood.json | 17 +++++++++++++++++ .../recipes/stripped_mangrove_wood.json | 17 +++++++++++++++++ .../rug/recipes/woodcutting_cherry_fence.json | 8 ++++++++ .../rug/recipes/woodcutting_cherry_slab.json | 8 ++++++++ .../rug/recipes/woodcutting_cherry_stairs.json | 8 ++++++++ 8 files changed, 84 insertions(+), 3 deletions(-) create mode 100644 src/main/resources/assets/rug/RugDataStorage/minecraft/recipes/cherry_wood.json create mode 100644 src/main/resources/assets/rug/RugDataStorage/minecraft/recipes/stripped_cherry_wood.json create mode 100644 src/main/resources/assets/rug/RugDataStorage/minecraft/recipes/stripped_mangrove_wood.json create mode 100644 src/main/resources/assets/rug/RugDataStorage/rug/recipes/woodcutting_cherry_fence.json create mode 100644 src/main/resources/assets/rug/RugDataStorage/rug/recipes/woodcutting_cherry_slab.json create mode 100644 src/main/resources/assets/rug/RugDataStorage/rug/recipes/woodcutting_cherry_stairs.json diff --git a/gradle.properties b/gradle.properties index 6351e46..e47479c 100644 --- a/gradle.properties +++ b/gradle.properties @@ -8,7 +8,7 @@ # Mod Properties mod_id=rug mod_name=Rug - mod_version=1.5.2 + mod_version=1.5.3 maven_group=de.rubixdev.rug archives_base_name=rug diff --git a/src/main/java/de/rubixdev/rug/RugSettings.java b/src/main/java/de/rubixdev/rug/RugSettings.java index 56ea1bd..2d328da 100644 --- a/src/main/java/de/rubixdev/rug/RugSettings.java +++ b/src/main/java/de/rubixdev/rug/RugSettings.java @@ -229,21 +229,24 @@ public String description() { recipes = { "acacia_wood.json", "birch_wood.json", + "cherry_wood.json", "crimson_hyphae.json", "dark_oak_wood.json", "jungle_wood.json", "mangrove_wood.json", "oak_wood.json", "spruce_wood.json", + "warped_hyphae.json", "stripped_acacia_wood.json", "stripped_birch_wood.json", + "stripped_cherry_wood.json", "stripped_crimson_hyphae.json", "stripped_dark_oak_wood.json", "stripped_jungle_wood.json", + "stripped_mangrove_wood.json", "stripped_oak_wood.json", "stripped_spruce_wood.json", - "stripped_warped_hyphae.json", - "warped_hyphae.json" + "stripped_warped_hyphae.json" }, recipeNamespace = "minecraft") @Rule(categories = {CRAFTING, SURVIVAL, RUG}) @@ -533,6 +536,9 @@ public String description() { "woodcutting_birch_fence.json", "woodcutting_birch_slab.json", "woodcutting_birch_stairs.json", + "woodcutting_cherry_fence.json", + "woodcutting_cherry_slab.json", + "woodcutting_cherry_stairs.json", "woodcutting_crimson_fence.json", "woodcutting_crimson_slab.json", "woodcutting_crimson_stairs.json", diff --git a/src/main/resources/assets/rug/RugDataStorage/minecraft/recipes/cherry_wood.json b/src/main/resources/assets/rug/RugDataStorage/minecraft/recipes/cherry_wood.json new file mode 100644 index 0000000..a15513a --- /dev/null +++ b/src/main/resources/assets/rug/RugDataStorage/minecraft/recipes/cherry_wood.json @@ -0,0 +1,17 @@ +{ + "type": "crafting_shaped", + "group": "bark", + "pattern": [ + "##", + "##" + ], + "key": { + "#": { + "item": "minecraft:cherry_log" + } + }, + "result": { + "item": "minecraft:cherry_wood", + "count": 4 + } +} diff --git a/src/main/resources/assets/rug/RugDataStorage/minecraft/recipes/stripped_cherry_wood.json b/src/main/resources/assets/rug/RugDataStorage/minecraft/recipes/stripped_cherry_wood.json new file mode 100644 index 0000000..e3a9987 --- /dev/null +++ b/src/main/resources/assets/rug/RugDataStorage/minecraft/recipes/stripped_cherry_wood.json @@ -0,0 +1,17 @@ +{ + "type": "crafting_shaped", + "group": "bark", + "pattern": [ + "##", + "##" + ], + "key": { + "#": { + "item": "minecraft:stripped_cherry_log" + } + }, + "result": { + "item": "minecraft:stripped_cherry_wood", + "count": 4 + } +} diff --git a/src/main/resources/assets/rug/RugDataStorage/minecraft/recipes/stripped_mangrove_wood.json b/src/main/resources/assets/rug/RugDataStorage/minecraft/recipes/stripped_mangrove_wood.json new file mode 100644 index 0000000..c459971 --- /dev/null +++ b/src/main/resources/assets/rug/RugDataStorage/minecraft/recipes/stripped_mangrove_wood.json @@ -0,0 +1,17 @@ +{ + "type": "crafting_shaped", + "group": "bark", + "pattern": [ + "##", + "##" + ], + "key": { + "#": { + "item": "minecraft:stripped_mangrove_log" + } + }, + "result": { + "item": "minecraft:stripped_mangrove_wood", + "count": 4 + } +} diff --git a/src/main/resources/assets/rug/RugDataStorage/rug/recipes/woodcutting_cherry_fence.json b/src/main/resources/assets/rug/RugDataStorage/rug/recipes/woodcutting_cherry_fence.json new file mode 100644 index 0000000..1031146 --- /dev/null +++ b/src/main/resources/assets/rug/RugDataStorage/rug/recipes/woodcutting_cherry_fence.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:cherry_planks" + }, + "result": "minecraft:cherry_fence", + "count": 1 +} diff --git a/src/main/resources/assets/rug/RugDataStorage/rug/recipes/woodcutting_cherry_slab.json b/src/main/resources/assets/rug/RugDataStorage/rug/recipes/woodcutting_cherry_slab.json new file mode 100644 index 0000000..c28dba1 --- /dev/null +++ b/src/main/resources/assets/rug/RugDataStorage/rug/recipes/woodcutting_cherry_slab.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:cherry_planks" + }, + "result": "minecraft:cherry_slab", + "count": 2 +} diff --git a/src/main/resources/assets/rug/RugDataStorage/rug/recipes/woodcutting_cherry_stairs.json b/src/main/resources/assets/rug/RugDataStorage/rug/recipes/woodcutting_cherry_stairs.json new file mode 100644 index 0000000..4a924da --- /dev/null +++ b/src/main/resources/assets/rug/RugDataStorage/rug/recipes/woodcutting_cherry_stairs.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:cherry_planks" + }, + "result": "minecraft:cherry_stairs", + "count": 1 +}