Fix dye recipes
This commit is contained in:
parent
5360ceecda
commit
ba98469ae6
6 changed files with 22 additions and 40 deletions
|
@ -25,8 +25,9 @@
|
|||
- 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.)
|
||||
|
||||
## [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.
|
||||
### 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.)
|
||||
- Fix cyan dye recipe
|
||||
- Fix red dye recipe
|
||||
|
|
|
@ -3,7 +3,7 @@ org.gradle.jvmargs = -Xmx1G
|
|||
org.gradle.parallel = true
|
||||
|
||||
# Mod Properties
|
||||
version = 3.0.6
|
||||
version = 3.0.7
|
||||
maven_group = xyz.limepot
|
||||
archives_base_name = roses_mod
|
||||
|
||||
|
|
|
@ -1,17 +1,17 @@
|
|||
{
|
||||
"type": "minecraft:crafting_shaped",
|
||||
"pattern": [
|
||||
" ",
|
||||
" ",
|
||||
" W"
|
||||
"type": "minecraft:crafting_shapeless",
|
||||
"ingredients": [
|
||||
[
|
||||
{
|
||||
"item": "roses_mod:cyan_rose_bush"
|
||||
},
|
||||
{
|
||||
"item": "roses_mod:cyan_rose"
|
||||
}
|
||||
]
|
||||
],
|
||||
"key": {
|
||||
"W": {
|
||||
"item": "roses_mod:cyan_rose"
|
||||
}
|
||||
},
|
||||
"result": {
|
||||
"item": "minecraft:cyan_dye",
|
||||
"count": 1
|
||||
"count": 2
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,8 +0,0 @@
|
|||
{
|
||||
"type": "minecraft:crafting_shapeless",
|
||||
"ingredients": [],
|
||||
"result": {
|
||||
"item": "roses_mod:cyan_rose",
|
||||
"count": 4
|
||||
}
|
||||
}
|
|
@ -1,15 +1,12 @@
|
|||
{
|
||||
"type": "minecraft:crafting_shaped",
|
||||
"pattern": [
|
||||
" ",
|
||||
" ",
|
||||
" W"
|
||||
"type": "minecraft:crafting_shapeless",
|
||||
"ingredients": [
|
||||
[
|
||||
{
|
||||
"item": "roses_mod:rose_flower"
|
||||
}
|
||||
]
|
||||
],
|
||||
"key": {
|
||||
"W": {
|
||||
"item": "roses_mod:rose_flower"
|
||||
}
|
||||
},
|
||||
"result": {
|
||||
"item": "minecraft:red_dye",
|
||||
"count": 1
|
||||
|
|
|
@ -1,8 +0,0 @@
|
|||
{
|
||||
"type": "minecraft:crafting_shapeless",
|
||||
"ingredients": [],
|
||||
"result": {
|
||||
"item": "roses_mod:rose_flower",
|
||||
"count": 4
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue