Add compost recipe for golden carrot

This commit is contained in:
thedarkcolour 2024-05-21 11:28:26 -07:00
parent 11f41e1514
commit 163edeb576
No known key found for this signature in database
GPG Key ID: 6599A8E0516C8F38
2 changed files with 13 additions and 0 deletions

View File

@ -0,0 +1,12 @@
{
"type": "exdeorum:barrel_compost",
"ingredient": [
{
"item": "minecraft:golden_carrot"
},
{
"item": "minecraft:golden_carrot"
}
],
"volume": 500
}

View File

@ -726,6 +726,7 @@ public class Recipes {
// lol
barrelCompost(writer, "golden_apples", ingredient(Items.GOLDEN_APPLE, Items.ENCHANTED_GOLDEN_APPLE), 1000);
barrelCompost(writer, "golden_carrot", ingredient(Items.GOLDEN_CARROT, Items.GOLDEN_CARROT), 500);
}
private static void barrelCompost(Consumer<FinishedRecipe> writer, String id, Ingredient ingredient, int volume) {