diff --git a/CHANGELOG.md b/CHANGELOG.md index f5a5393..deab7bc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -28,3 +28,4 @@ ## [3.0.7] ### Changes: - Fixed the icon (it was named improperly.) +- Add recipe for cyan rose and rose (put a bush in the crafting table to yield 4 flowers.) diff --git a/src/main/resources/data/roses_mod/recipes/cyan_rose.json b/src/main/resources/data/roses_mod/recipes/cyan_rose.json new file mode 100644 index 0000000..59b1f47 --- /dev/null +++ b/src/main/resources/data/roses_mod/recipes/cyan_rose.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:crafting_shapeless", + "ingredients": [], + "result": { + "item": "roses_mod:cyan_rose", + "count": 4 + } +} diff --git a/src/main/resources/data/roses_mod/recipes/rose_flower.json b/src/main/resources/data/roses_mod/recipes/rose_flower.json new file mode 100644 index 0000000..df0504c --- /dev/null +++ b/src/main/resources/data/roses_mod/recipes/rose_flower.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:crafting_shapeless", + "ingredients": [], + "result": { + "item": "roses_mod:rose_flower", + "count": 4 + } +}