Skip to content

Commit

Permalink
Fixed recipes for 1.21.2+
Browse files Browse the repository at this point in the history
  • Loading branch information
Lionceot committed Nov 19, 2024
1 parent 4256b58 commit 6de2dd8
Show file tree
Hide file tree
Showing 57 changed files with 853 additions and 1,103 deletions.
32 changes: 14 additions & 18 deletions src/main/resources/data/beautify/recipe/acacia_blinds.json
Original file line number Diff line number Diff line change
@@ -1,20 +1,16 @@
{
"type": "minecraft:crafting_shaped",
"pattern": [
"/_/",
"/_/"
],
"key": {
"/": {
"item": "minecraft:stick"
},
"_": {
"item": "minecraft:acacia_slab"
}
},
"result": {
"id": "beautify:acacia_blinds",
"count": 1
},
"group": "blinds"
"type": "minecraft:crafting_shaped",
"pattern": [
"/_/",
"/_/"
],
"key": {
"/": "minecraft:stick",
"_": "minecraft:acacia_slab"
},
"result": {
"id": "beautify:acacia_blinds",
"count": 1
},
"group": "blinds"
}
40 changes: 17 additions & 23 deletions src/main/resources/data/beautify/recipe/acacia_picture_frame.json
Original file line number Diff line number Diff line change
@@ -1,24 +1,18 @@
{
"type": "minecraft:crafting_shaped",
"pattern": [
" _ ",
" W ",
" _/"
],
"key": {
"_": {
"item": "minecraft:acacia_slab"
},
"W": {
"item": "minecraft:white_wool"
},
"/": {
"item": "minecraft:stick"
}
},
"result": {
"id": "beautify:acacia_picture_frame",
"count": 1
},
"group": "frames"
}
"type": "minecraft:crafting_shaped",
"pattern": [
" _ ",
" W ",
" _/"
],
"key": {
"_": "minecraft:acacia_slab",
"W": "minecraft:white_wool",
"/": "minecraft:stick"
},
"result": {
"id": "beautify:acacia_picture_frame",
"count": 1
},
"group": "frames"
}
34 changes: 15 additions & 19 deletions src/main/resources/data/beautify/recipe/acacia_trellis.json
Original file line number Diff line number Diff line change
@@ -1,21 +1,17 @@
{
"type": "minecraft:crafting_shaped",
"pattern": [
"/ /",
" O ",
"/ /"
],
"key": {
"/": {
"item": "minecraft:stick"
},
"O": {
"item": "minecraft:acacia_log"
}
},
"result": {
"id": "beautify:acacia_trellis",
"count": 4
},
"group": "trellis"
"type": "minecraft:crafting_shaped",
"pattern": [
"/ /",
" O ",
"/ /"
],
"key": {
"/": "minecraft:stick",
"O": "minecraft:acacia_log"
},
"result": {
"id": "beautify:acacia_trellis",
"count": 4
},
"group": "trellis"
}
32 changes: 14 additions & 18 deletions src/main/resources/data/beautify/recipe/birch_blinds.json
Original file line number Diff line number Diff line change
@@ -1,20 +1,16 @@
{
"type": "minecraft:crafting_shaped",
"pattern": [
"/_/",
"/_/"
],
"key": {
"/": {
"item": "minecraft:stick"
},
"_": {
"item": "minecraft:birch_slab"
}
},
"result": {
"id": "beautify:birch_blinds",
"count": 1
},
"group": "blinds"
"type": "minecraft:crafting_shaped",
"pattern": [
"/_/",
"/_/"
],
"key": {
"/": "minecraft:stick",
"_": "minecraft:birch_slab"
},
"result": {
"id": "beautify:birch_blinds",
"count": 1
},
"group": "blinds"
}
40 changes: 17 additions & 23 deletions src/main/resources/data/beautify/recipe/birch_picture_frame.json
Original file line number Diff line number Diff line change
@@ -1,24 +1,18 @@
{
"type": "minecraft:crafting_shaped",
"pattern": [
" _ ",
" W ",
" _/"
],
"key": {
"_": {
"item": "minecraft:birch_slab"
},
"W": {
"item": "minecraft:white_wool"
},
"/": {
"item": "minecraft:stick"
}
},
"result": {
"id": "beautify:birch_picture_frame",
"count": 1
},
"group": "frames"
}
"type": "minecraft:crafting_shaped",
"pattern": [
" _ ",
" W ",
" _/"
],
"key": {
"_": "minecraft:birch_slab",
"W": "minecraft:white_wool",
"/": "minecraft:stick"
},
"result": {
"id": "beautify:birch_picture_frame",
"count": 1
},
"group": "frames"
}
34 changes: 15 additions & 19 deletions src/main/resources/data/beautify/recipe/birch_trellis.json
Original file line number Diff line number Diff line change
@@ -1,21 +1,17 @@
{
"type": "minecraft:crafting_shaped",
"pattern": [
"/ /",
" O ",
"/ /"
],
"key": {
"/": {
"item": "minecraft:stick"
},
"O": {
"item": "minecraft:birch_log"
}
},
"result": {
"id": "beautify:birch_trellis",
"count": 4
},
"group": "trellis"
"type": "minecraft:crafting_shaped",
"pattern": [
"/ /",
" O ",
"/ /"
],
"key": {
"/": "minecraft:stick",
"O": "minecraft:birch_log"
},
"result": {
"id": "beautify:birch_trellis",
"count": 4
},
"group": "trellis"
}
28 changes: 11 additions & 17 deletions src/main/resources/data/beautify/recipe/bookstack.json
Original file line number Diff line number Diff line change
@@ -1,18 +1,12 @@
{
"type": "minecraft:crafting_shapeless",
"ingredients": [
{
"item": "minecraft:book"
},
{
"item": "minecraft:book"
},
{
"item": "minecraft:book"
}
],
"result": {
"id": "beautify:bookstack",
"count": 1
}
}
"type": "minecraft:crafting_shapeless",
"ingredients": [
"minecraft:book",
"minecraft:book",
"minecraft:book"
],
"result": {
"id": "beautify:bookstack",
"count": 1
}
}
10 changes: 2 additions & 8 deletions src/main/resources/data/beautify/recipe/botanist_workbench.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,8 @@
"PP"
],
"key": {
"#": {
"item": "minecraft:flower_pot"
},
"P": [
{
"tag": "minecraft:planks"
}
]
"#": "minecraft:flower_pot",
"P": "#minecraft:planks"
},
"result": {
"id": "beautify:botanist_workbench",
Expand Down
36 changes: 16 additions & 20 deletions src/main/resources/data/beautify/recipe/candelabra.json
Original file line number Diff line number Diff line change
@@ -1,21 +1,17 @@
{
"type": "minecraft:crafting_shaped",
"pattern": [
"###",
"III",
" I "
],
"key": {
"#": {
"item": "minecraft:candle"
},
"I": {
"item": "minecraft:iron_nugget"
}
},
"result": {
"id": "beautify:lamp_candelabra",
"count": 1
},
"group": "candelabras"
}
"type": "minecraft:crafting_shaped",
"pattern": [
"###",
"III",
" I "
],
"key": {
"#": "minecraft:candle",
"I": "minecraft:iron_nugget"
},
"result": {
"id": "beautify:lamp_candelabra",
"count": 1
},
"group": "candelabras"
}
36 changes: 16 additions & 20 deletions src/main/resources/data/beautify/recipe/candelabra_black.json
Original file line number Diff line number Diff line change
@@ -1,21 +1,17 @@
{
"type": "minecraft:crafting_shaped",
"pattern": [
"###",
"III",
" I "
],
"key": {
"#": {
"item": "minecraft:black_candle"
},
"I": {
"item": "minecraft:iron_nugget"
}
},
"result": {
"id": "beautify:lamp_candelabra_black",
"count": 1
},
"group": "candelabras"
}
"type": "minecraft:crafting_shaped",
"pattern": [
"###",
"III",
" I "
],
"key": {
"#": "minecraft:black_candle",
"I": "minecraft:iron_nugget"
},
"result": {
"id": "beautify:lamp_candelabra_black",
"count": 1
},
"group": "candelabras"
}
36 changes: 16 additions & 20 deletions src/main/resources/data/beautify/recipe/candelabra_blue.json
Original file line number Diff line number Diff line change
@@ -1,21 +1,17 @@
{
"type": "minecraft:crafting_shaped",
"pattern": [
"###",
"III",
" I "
],
"key": {
"#": {
"item": "minecraft:blue_candle"
},
"I": {
"item": "minecraft:iron_nugget"
}
},
"result": {
"id": "beautify:lamp_candelabra_blue",
"count": 1
},
"group": "candelabras"
}
"type": "minecraft:crafting_shaped",
"pattern": [
"###",
"III",
" I "
],
"key": {
"#": "minecraft:blue_candle",
"I": "minecraft:iron_nugget"
},
"result": {
"id": "beautify:lamp_candelabra_blue",
"count": 1
},
"group": "candelabras"
}
Loading

0 comments on commit 6de2dd8

Please sign in to comment.