diff --git a/gradle.properties b/gradle.properties index 4a4813a..6f3b34b 100644 --- a/gradle.properties +++ b/gradle.properties @@ -34,7 +34,7 @@ mod_name=Create: Perfect Processing # The license of the mod. Review your options at https://choosealicense.com/. All Rights Reserved is the default. mod_license=MIT # The mod version. See https://semver.org/ -mod_version=1.6.0 +mod_version=1.6.1 # The group ID for the mod. It is only important when publishing as an artifact to a Maven repository. # This should match the base package used for the mod sources. # See https://maven.apache.org/guides/mini/guide-naming-conventions.html diff --git a/src/main/resources/data/perfectprocessing/recipe/shaped/chest_from_pale_oak.json b/src/main/resources/data/perfectprocessing/recipe/shaped/chest_from_pale_oak.json new file mode 100644 index 0000000..ec187c5 --- /dev/null +++ b/src/main/resources/data/perfectprocessing/recipe/shaped/chest_from_pale_oak.json @@ -0,0 +1,24 @@ +{ + "neoforge:conditions": [ + { + "type": "zeta:flag", + "flag": "variant_chests" + } + ], + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "#": { + "item": "minecraft:pale_oak_planks" + } + }, + "pattern": [ + "###", + "# #", + "###" + ], + "result": { + "count": 1, + "id": "minecraft:chest" + } +} \ No newline at end of file diff --git a/src/main/resources/data/perfectprocessing/recipe/shaped/chest_from_pale_oak_logs.json b/src/main/resources/data/perfectprocessing/recipe/shaped/chest_from_pale_oak_logs.json new file mode 100644 index 0000000..1398a65 --- /dev/null +++ b/src/main/resources/data/perfectprocessing/recipe/shaped/chest_from_pale_oak_logs.json @@ -0,0 +1,24 @@ +{ + "neoforge:conditions": [ + { + "type": "zeta:flag", + "flag": "variant_chests" + } + ], + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "#": { + "item": "minecraft:pale_oak_log" + } + }, + "pattern": [ + "###", + "# #", + "###" + ], + "result": { + "count": 4, + "id": "minecraft:chest" + } +} \ No newline at end of file