-
-
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.
- Added Chocolate Pies - Updated some textures
- Loading branch information
Showing
6 changed files
with
156 additions
and
0 deletions.
There are no files selected for viewing
32 changes: 32 additions & 0 deletions
32
src/main/resources/data/culinaire/advancements/crafting/dark_chocolate_pie.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,32 @@ | ||
{ | ||
"parent": "minecraft:recipes/root", | ||
"rewards": { | ||
"recipes": [ | ||
"culinaire:crafting/dark_chocolate_pie" | ||
] | ||
}, | ||
"criteria": { | ||
"has_chocolate_bottle": { | ||
"trigger": "minecraft:inventory_changed", | ||
"conditions": { | ||
"items": [ | ||
{ | ||
"items": ["culinaire:dark_chocolate_bottle"] | ||
} | ||
] | ||
} | ||
}, | ||
"has_the_recipe": { | ||
"trigger": "minecraft:recipe_unlocked", | ||
"conditions": { | ||
"recipe": "culinaire:crafting/dark_chocolate_pie" | ||
} | ||
} | ||
}, | ||
"requirements": [ | ||
[ | ||
"has_chocolate_bottle", | ||
"has_the_recipe" | ||
] | ||
] | ||
} |
32 changes: 32 additions & 0 deletions
32
src/main/resources/data/culinaire/advancements/crafting/milk_chocolate_pie.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,32 @@ | ||
{ | ||
"parent": "minecraft:recipes/root", | ||
"rewards": { | ||
"recipes": [ | ||
"culinaire:crafting/milk_chocolate_pie" | ||
] | ||
}, | ||
"criteria": { | ||
"has_chocolate_bottle": { | ||
"trigger": "minecraft:inventory_changed", | ||
"conditions": { | ||
"items": [ | ||
{ | ||
"items": ["culinaire:milk_chocolate_bottle"] | ||
} | ||
] | ||
} | ||
}, | ||
"has_the_recipe": { | ||
"trigger": "minecraft:recipe_unlocked", | ||
"conditions": { | ||
"recipe": "culinaire:crafting/milk_chocolate_pie" | ||
} | ||
} | ||
}, | ||
"requirements": [ | ||
[ | ||
"has_chocolate_bottle", | ||
"has_the_recipe" | ||
] | ||
] | ||
} |
32 changes: 32 additions & 0 deletions
32
src/main/resources/data/culinaire/advancements/crafting/white_chocolate_pie.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,32 @@ | ||
{ | ||
"parent": "minecraft:recipes/root", | ||
"rewards": { | ||
"recipes": [ | ||
"culinaire:crafting/white_chocolate_pie" | ||
] | ||
}, | ||
"criteria": { | ||
"has_chocolate_bottle": { | ||
"trigger": "minecraft:inventory_changed", | ||
"conditions": { | ||
"items": [ | ||
{ | ||
"items": ["culinaire:white_chocolate_bottle"] | ||
} | ||
] | ||
} | ||
}, | ||
"has_the_recipe": { | ||
"trigger": "minecraft:recipe_unlocked", | ||
"conditions": { | ||
"recipe": "culinaire:crafting/white_chocolate_pie" | ||
} | ||
} | ||
}, | ||
"requirements": [ | ||
[ | ||
"has_chocolate_bottle", | ||
"has_the_recipe" | ||
] | ||
] | ||
} |
20 changes: 20 additions & 0 deletions
20
src/main/resources/data/culinaire/recipes/crafting/dark_chocolate_pie.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,20 @@ | ||
{ | ||
"type": "minecraft:crafting_shapeless", | ||
"ingredients": [ | ||
{ | ||
"item": "culinaire:dark_chocolate_bottle" | ||
}, | ||
{ | ||
"item": "culinaire:dark_chocolate_bottle" | ||
}, | ||
{ | ||
"item": "culinaire:sugar" | ||
}, | ||
{ | ||
"item": "minecraft:egg" | ||
} | ||
], | ||
"result": { | ||
"item": "culinaire:dark_chocolate_pie" | ||
} | ||
} |
20 changes: 20 additions & 0 deletions
20
src/main/resources/data/culinaire/recipes/crafting/milk_chocolate_pie.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,20 @@ | ||
{ | ||
"type": "minecraft:crafting_shapeless", | ||
"ingredients": [ | ||
{ | ||
"item": "culinaire:milk_chocolate_bottle" | ||
}, | ||
{ | ||
"item": "culinaire:milk_chocolate_bottle" | ||
}, | ||
{ | ||
"item": "culinaire:sugar" | ||
}, | ||
{ | ||
"item": "minecraft:egg" | ||
} | ||
], | ||
"result": { | ||
"item": "culinaire:milk_chocolate_pie" | ||
} | ||
} |
20 changes: 20 additions & 0 deletions
20
src/main/resources/data/culinaire/recipes/crafting/white_chocolate_pie.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,20 @@ | ||
{ | ||
"type": "minecraft:crafting_shapeless", | ||
"ingredients": [ | ||
{ | ||
"item": "culinaire:white_chocolate_bottle" | ||
}, | ||
{ | ||
"item": "culinaire:white_chocolate_bottle" | ||
}, | ||
{ | ||
"item": "culinaire:sugar" | ||
}, | ||
{ | ||
"item": "minecraft:egg" | ||
} | ||
], | ||
"result": { | ||
"item": "culinaire:white_chocolate_pie" | ||
} | ||
} |