Dye Recipes
This commit is contained in:
parent
45ad5d88d0
commit
e301ef894b
3 changed files with 35 additions and 1 deletions
|
@ -3,7 +3,7 @@ org.gradle.jvmargs = -Xmx1G
|
|||
org.gradle.parallel = true
|
||||
|
||||
# Mod Properties
|
||||
version = 2.2.1
|
||||
version = 2.3.0
|
||||
maven_group = xyz.limepot
|
||||
archives_base_name = roses_mod
|
||||
|
||||
|
|
17
src/main/resources/data/roses_mod/recipes/cyan_dye.json
Normal file
17
src/main/resources/data/roses_mod/recipes/cyan_dye.json
Normal file
|
@ -0,0 +1,17 @@
|
|||
{
|
||||
"type": "minecraft:crafting_shaped",
|
||||
"pattern": [
|
||||
" ",
|
||||
" ",
|
||||
" W"
|
||||
],
|
||||
"key": {
|
||||
"W": {
|
||||
"item": "roses_mod:cyan_rose"
|
||||
}
|
||||
},
|
||||
"result": {
|
||||
"item": "minecraft:cyan_dye",
|
||||
"count": 1
|
||||
}
|
||||
}
|
17
src/main/resources/data/roses_mod/recipes/red_dye.json
Normal file
17
src/main/resources/data/roses_mod/recipes/red_dye.json
Normal file
|
@ -0,0 +1,17 @@
|
|||
{
|
||||
"type": "minecraft:crafting_shaped",
|
||||
"pattern": [
|
||||
" ",
|
||||
" ",
|
||||
" W"
|
||||
],
|
||||
"key": {
|
||||
"W": {
|
||||
"item": "roses_mod:rose_flower"
|
||||
}
|
||||
},
|
||||
"result": {
|
||||
"item": "minecraft:red_dye",
|
||||
"count": 1
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue