Fix dye recipes

This commit is contained in:
nelle 2023-11-02 00:44:17 -06:00
parent 5360ceecda
commit ba98469ae6
6 changed files with 22 additions and 40 deletions

View file

@ -25,8 +25,9 @@
- New mod-icon (old one had a poppy? lol?) - New mod-icon (old one had a poppy? lol?)
- Cyan Rose bushes now use the random_patch type as (Also serves as hotfix to the crash on world load.) - Cyan Rose bushes now use the random_patch type as (Also serves as hotfix to the crash on world load.)
## [3.1.0] ## [3.0.7]
I believe the mod is now *actually* in a nice finished state, generation values might still need to be tweaked, however. I believe the mod is now *actually* in a nice finished state, generation values might still need to be tweaked, however.
### Changes: ### Changes:
- Fixed the icon (it was named improperly.) - 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.) - Fix cyan dye recipe
- Fix red dye recipe

View file

@ -3,7 +3,7 @@ org.gradle.jvmargs = -Xmx1G
org.gradle.parallel = true org.gradle.parallel = true
# Mod Properties # Mod Properties
version = 3.0.6 version = 3.0.7
maven_group = xyz.limepot maven_group = xyz.limepot
archives_base_name = roses_mod archives_base_name = roses_mod

View file

@ -1,17 +1,17 @@
{ {
"type": "minecraft:crafting_shaped", "type": "minecraft:crafting_shapeless",
"pattern": [ "ingredients": [
" ", [
" ", {
" W" "item": "roses_mod:cyan_rose_bush"
},
{
"item": "roses_mod:cyan_rose"
}
]
], ],
"key": {
"W": {
"item": "roses_mod:cyan_rose"
}
},
"result": { "result": {
"item": "minecraft:cyan_dye", "item": "minecraft:cyan_dye",
"count": 1 "count": 2
} }
} }

View file

@ -1,8 +0,0 @@
{
"type": "minecraft:crafting_shapeless",
"ingredients": [],
"result": {
"item": "roses_mod:cyan_rose",
"count": 4
}
}

View file

@ -1,15 +1,12 @@
{ {
"type": "minecraft:crafting_shaped", "type": "minecraft:crafting_shapeless",
"pattern": [ "ingredients": [
" ", [
" ", {
" W" "item": "roses_mod:rose_flower"
}
]
], ],
"key": {
"W": {
"item": "roses_mod:rose_flower"
}
},
"result": { "result": {
"item": "minecraft:red_dye", "item": "minecraft:red_dye",
"count": 1 "count": 1

View file

@ -1,8 +0,0 @@
{
"type": "minecraft:crafting_shapeless",
"ingredients": [],
"result": {
"item": "roses_mod:rose_flower",
"count": 4
}
}