Skip to content

Commit c30b1c1

Browse files
authored
Merge pull request #14 from azkbbys/main
feat: add air_duct, barrier, bamboo, dirt, (*_)glass block recipes
2 parents db403c0 + 7a3dd22 commit c30b1c1

11 files changed

Lines changed: 171 additions & 0 deletions

File tree

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
"type": "minecraft:crafting_shaped",
3+
"pattern": [
4+
"iii",
5+
" ",
6+
"iii"
7+
],
8+
"key": {
9+
"i": "minecraft:iron_ingot"
10+
},
11+
"result": {
12+
"id": "box3:air_duct",
13+
"count": 1
14+
}
15+
}
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
{
2+
"type": "minecraft:crafting_shaped",
3+
"pattern": [
4+
"##",
5+
"##"
6+
],
7+
"key": {
8+
"#": "minecraft:bamboo"
9+
},
10+
"result": {
11+
"id": "box3:bamboo",
12+
"count": 1
13+
}
14+
}
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
{
2+
"type": "minecraft:crafting_shaped",
3+
"pattern": [
4+
"#G#",
5+
"GGG",
6+
"#G#"
7+
],
8+
"key": {
9+
"#": "minecraft:green_dye",
10+
"G": "minecraft:glass"
11+
},
12+
"result": {
13+
"id": "box3:barrier",
14+
"count": 5
15+
}
16+
}
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
{
2+
"type": "minecraft:crafting_shaped",
3+
"pattern": [
4+
"###",
5+
"#B#",
6+
"###"
7+
],
8+
"key": {
9+
"#": "box3:glass",
10+
"B": "minecraft:black_dye"
11+
},
12+
"result": {
13+
"id": "box3:black_glass",
14+
"count": 8
15+
}
16+
}
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
{
2+
"type": "minecraft:crafting_shaped",
3+
"pattern": [
4+
"###",
5+
"#B#",
6+
"###"
7+
],
8+
"key": {
9+
"#": "box3:glass",
10+
"B": "minecraft:blue_dye"
11+
},
12+
"result": {
13+
"id": "box3:blue_glass",
14+
"count": 8
15+
}
16+
}
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
{
2+
"type": "minecraft:crafting_shapeless",
3+
"ingredients": [
4+
"minecraft:glass",
5+
"minecraft:glass",
6+
"minecraft:glass",
7+
"minecraft:glass",
8+
"minecraft:glass",
9+
"minecraft:glass",
10+
"minecraft:green_dye",
11+
"minecraft:blue_dye",
12+
"minecraft:red_dye"
13+
],
14+
"result": {
15+
"id": "box3:color_glass",
16+
"count": 6
17+
}
18+
}
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
{
2+
"type": "minecraft:crafting_shaped",
3+
"pattern": [
4+
"##",
5+
"##"
6+
],
7+
"key": {
8+
"#": "minecraft:dirt"
9+
},
10+
"result": {
11+
"id": "box3:dirt",
12+
"count": 4
13+
}
14+
}
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
"type": "minecraft:crafting_shaped",
3+
"pattern": [
4+
"###",
5+
"# #",
6+
"###"
7+
],
8+
"key": {
9+
"#": "minecraft:cyan_stained_glass"
10+
},
11+
"result": {
12+
"id": "box3:glass",
13+
"count": 8
14+
}
15+
}
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
{
2+
"type": "minecraft:crafting_shaped",
3+
"pattern": [
4+
"###",
5+
"#B#",
6+
"###"
7+
],
8+
"key": {
9+
"#": "box3:glass",
10+
"B": "minecraft:green_dye"
11+
},
12+
"result": {
13+
"id": "box3:green_glass",
14+
"count": 8
15+
}
16+
}
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
{
2+
"type": "minecraft:crafting_shaped",
3+
"pattern": [
4+
"###",
5+
"#B#",
6+
"###"
7+
],
8+
"key": {
9+
"#": "box3:glass",
10+
"B": "minecraft:red_dye"
11+
},
12+
"result": {
13+
"id": "box3:red_glass",
14+
"count": 8
15+
}
16+
}

0 commit comments

Comments
 (0)