-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
H. “Lyūke” Monaggem
committed
Sep 20, 2024
1 parent
8f2f2a3
commit d2b8a4f
Showing
6 changed files
with
46 additions
and
4 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
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 |
---|---|---|
|
@@ -10,6 +10,7 @@ | |
} | ||
}, | ||
"result": { | ||
"id": "minecraft:raw_copper" | ||
"id": "minecraft:raw_copper", | ||
"count": 3 | ||
} | ||
} |
10 changes: 10 additions & 0 deletions
10
src/main/resources/data/caupona/recipe/crafting/bread_from_loaf.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:crafting_shapeless", | ||
"ingredients": [ | ||
{"item": "caupona:loaf"} | ||
], | ||
"result": { | ||
"id": "minecraft:bread", | ||
"count": 2 | ||
} | ||
} |
23 changes: 23 additions & 0 deletions
23
src/main/resources/data/caupona/recipe/crafting/kitchen_rail.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,23 @@ | ||
{ | ||
"type": "minecraft:crafting_shaped", | ||
"pattern": [ | ||
"SIS", | ||
"S S", | ||
"P P" | ||
], | ||
"key": { | ||
"S": { | ||
"item": "minecraft:stick" | ||
}, | ||
"I": { | ||
"item": "minecraft:iron_bars" | ||
}, | ||
"P": { | ||
"tag": "minecraft:planks" | ||
} | ||
}, | ||
"result": { | ||
"id": "caupona:kitchen_rail", | ||
"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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
"items": [ | ||
{ | ||
"item": "minecraft:wheat", | ||
"count": 5 | ||
"count": 3 | ||
} | ||
], | ||
"fluid": { | ||
|