forked from Pandarix/Beautify
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #32 from Lionceot/1.21
Fixed recipes for 1.21.2+
- Loading branch information
Showing
57 changed files
with
853 additions
and
1,103 deletions.
There are no files selected for viewing
32 changes: 14 additions & 18 deletions
32
src/main/resources/data/beautify/recipe/acacia_blinds.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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
40
src/main/resources/data/beautify/recipe/acacia_picture_frame.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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
34
src/main/resources/data/beautify/recipe/acacia_trellis.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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
32
src/main/resources/data/beautify/recipe/birch_blinds.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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
40
src/main/resources/data/beautify/recipe/birch_picture_frame.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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
34
src/main/resources/data/beautify/recipe/birch_trellis.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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
36
src/main/resources/data/beautify/recipe/candelabra_black.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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
36
src/main/resources/data/beautify/recipe/candelabra_blue.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
} |
Oops, something went wrong.