-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added: copper doors and trapdoors from copper blocks (and oxidized, w…
…axed variants)
- Loading branch information
Showing
24 changed files
with
160 additions
and
0 deletions.
There are no files selected for viewing
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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
{ | ||
"type": "minecraft:stonecutting", | ||
"ingredient": [ | ||
{"item": "minecraft:copper_block"} | ||
], | ||
"result": { | ||
"id": "minecraft:copper_door", | ||
"count": 5 | ||
} | ||
} |
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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
{ | ||
"type": "minecraft:stonecutting", | ||
"ingredient": [ | ||
{"item": "minecraft:exposed_copper"} | ||
], | ||
"result": { | ||
"id": "minecraft:exposed_copper_door", | ||
"count": 5 | ||
} | ||
} |
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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
{ | ||
"type": "minecraft:stonecutting", | ||
"ingredient": [ | ||
{"item": "minecraft:oxidized_copper"} | ||
], | ||
"result": { | ||
"id": "minecraft:oxidized_copper_door", | ||
"count": 5 | ||
} | ||
} |
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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
{ | ||
"type": "minecraft:stonecutting", | ||
"ingredient": [ | ||
{"item": "minecraft:waxed_copper_block"} | ||
], | ||
"result": { | ||
"id": "minecraft:waxed_copper_door", | ||
"count": 5 | ||
} | ||
} |
10 changes: 10 additions & 0 deletions
10
data/meenimc/recipe/omnicut/copper/cut/door_waxed_exposed.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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
{ | ||
"type": "minecraft:stonecutting", | ||
"ingredient": [ | ||
{"item": "minecraft:waxed_exposed_copper"} | ||
], | ||
"result": { | ||
"id": "minecraft:waxed_exposed_copper_door", | ||
"count": 5 | ||
} | ||
} |
10 changes: 10 additions & 0 deletions
10
data/meenimc/recipe/omnicut/copper/cut/door_waxed_oxidized.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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
{ | ||
"type": "minecraft:stonecutting", | ||
"ingredient": [ | ||
{"item": "minecraft:waxed_oxidized_copper"} | ||
], | ||
"result": { | ||
"id": "minecraft:waxed_oxidized_copper_door", | ||
"count": 5 | ||
} | ||
} |
10 changes: 10 additions & 0 deletions
10
data/meenimc/recipe/omnicut/copper/cut/door_waxed_weathered.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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
{ | ||
"type": "minecraft:stonecutting", | ||
"ingredient": [ | ||
{"item": "minecraft:waxed_weathered_copper"} | ||
], | ||
"result": { | ||
"id": "minecraft:waxed_weathered_copper_door", | ||
"count": 5 | ||
} | ||
} |
10 changes: 10 additions & 0 deletions
10
data/meenimc/recipe/omnicut/copper/cut/door_weathered.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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
{ | ||
"type": "minecraft:stonecutting", | ||
"ingredient": [ | ||
{"item": "minecraft:weathered_copper"} | ||
], | ||
"result": { | ||
"id": "minecraft:weathered_copper_door", | ||
"count": 5 | ||
} | ||
} |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
{ | ||
"type": "minecraft:stonecutting", | ||
"ingredient": [ | ||
{"item": "minecraft:copper_block"} | ||
], | ||
"result": { | ||
"id": "minecraft:copper_trapdoor", | ||
"count": 4 | ||
} | ||
} |
10 changes: 10 additions & 0 deletions
10
data/meenimc/recipe/omnicut/copper/cut/trapdoor_exposed.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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
{ | ||
"type": "minecraft:stonecutting", | ||
"ingredient": [ | ||
{"item": "minecraft:exposed_copper"} | ||
], | ||
"result": { | ||
"id": "minecraft:exposed_copper_trapdoor", | ||
"count": 4 | ||
} | ||
} |
10 changes: 10 additions & 0 deletions
10
data/meenimc/recipe/omnicut/copper/cut/trapdoor_oxidized.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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
{ | ||
"type": "minecraft:stonecutting", | ||
"ingredient": [ | ||
{"item": "minecraft:oxidized_copper"} | ||
], | ||
"result": { | ||
"id": "minecraft:oxidized_copper_trapdoor", | ||
"count": 4 | ||
} | ||
} |
10 changes: 10 additions & 0 deletions
10
data/meenimc/recipe/omnicut/copper/cut/trapdoor_waxed.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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
{ | ||
"type": "minecraft:stonecutting", | ||
"ingredient": [ | ||
{"item": "minecraft:waxed_copper_block"} | ||
], | ||
"result": { | ||
"id": "minecraft:waxed_copper_trapdoor", | ||
"count": 4 | ||
} | ||
} |
10 changes: 10 additions & 0 deletions
10
data/meenimc/recipe/omnicut/copper/cut/trapdoor_waxed_exposed.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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
{ | ||
"type": "minecraft:stonecutting", | ||
"ingredient": [ | ||
{"item": "minecraft:waxed_exposed_copper"} | ||
], | ||
"result": { | ||
"id": "minecraft:waxed_exposed_copper_trapdoor", | ||
"count": 4 | ||
} | ||
} |
10 changes: 10 additions & 0 deletions
10
data/meenimc/recipe/omnicut/copper/cut/trapdoor_waxed_oxidized.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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
{ | ||
"type": "minecraft:stonecutting", | ||
"ingredient": [ | ||
{"item": "minecraft:waxed_oxidized_copper"} | ||
], | ||
"result": { | ||
"id": "minecraft:waxed_oxidized_copper_trapdoor", | ||
"count": 4 | ||
} | ||
} |
10 changes: 10 additions & 0 deletions
10
data/meenimc/recipe/omnicut/copper/cut/trapdoor_waxed_weathered.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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
{ | ||
"type": "minecraft:stonecutting", | ||
"ingredient": [ | ||
{"item": "minecraft:waxed_weathered_copper"} | ||
], | ||
"result": { | ||
"id": "minecraft:waxed_weathered_copper_trapdoor", | ||
"count": 4 | ||
} | ||
} |
10 changes: 10 additions & 0 deletions
10
data/meenimc/recipe/omnicut/copper/cut/trapdoor_weathered.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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
{ | ||
"type": "minecraft:stonecutting", | ||
"ingredient": [ | ||
{"item": "minecraft:weathered_copper"} | ||
], | ||
"result": { | ||
"id": "minecraft:weathered_copper_trapdoor", | ||
"count": 4 | ||
} | ||
} |