Skip to content

Commit

Permalink
feat: re-balance some digesting recipes and nerf warped wart block re…
Browse files Browse the repository at this point in the history
…cipe
  • Loading branch information
Elenterius committed Nov 8, 2024
1 parent 1e2d185 commit 0df371e
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 15 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ private void buildFromOrganicRecipes(Consumer<FinishedRecipe> consumer) {
nutrientPasteRecipe(1, Items.MOSS_CARPET).addCraftingTimeModifier(-20).save(consumer);
nutrientPasteRecipe(2, Items.MOSS_BLOCK).setCraftingCost(3).addCraftingTimeModifier(20).save(consumer);

nutrientPasteRecipe(2, Items.NETHER_WART).addCraftingTimeModifier(-40).save(consumer);
nutrientPasteRecipe(2, Items.NETHER_WART).setCraftingCost(2).addCraftingTimeModifier(-40).save(consumer);
nutrientPasteRecipe(2, Items.CACTUS).setCraftingCost(3).save(consumer);
nutrientPasteRecipe(2, Items.LARGE_FERN).save(consumer);
nutrientPasteRecipe(2, Items.TALL_GRASS).save(consumer);
Expand All @@ -102,10 +102,10 @@ private void buildFromOrganicRecipes(Consumer<FinishedRecipe> consumer) {
nutrientPasteRecipe(2, Items.SMALL_DRIPLEAF).save(consumer);
nutrientPasteRecipe(4, Items.BIG_DRIPLEAF).setCraftingCost(3).save(consumer);

nutrientPasteRecipe(4, Items.HONEYCOMB).save(consumer);
nutrientPasteRecipe(4, Items.SEA_PICKLE).save(consumer);
nutrientPasteRecipe(4, Items.WARPED_WART_BLOCK).save(consumer);
nutrientPasteRecipe(9 + 5, Items.NETHER_WART_BLOCK).addCraftingTimeModifier(-120).save(consumer);
nutrientPasteRecipe(3, Items.HONEYCOMB).save(consumer);
nutrientPasteRecipe(3, Items.SEA_PICKLE).save(consumer);
nutrientPasteRecipe(3, Items.WARPED_WART_BLOCK).setCraftingCost(3).save(consumer);
nutrientPasteRecipe(9 * 2, Items.NETHER_WART_BLOCK).setCraftingCost(9 * 2 - 2).save(consumer);
nutrientPasteRecipe(4, Items.SHROOMLIGHT).setCraftingCost(3).save(consumer);

nutrientPasteRecipe(Foods.DRIED_KELP.getNutrition(), Items.KELP).setCraftingCost(3).addCraftingTimeModifier(35).save(consumer);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
"item": "minecraft:honeycomb"
},
"nutrientsCost": 2,
"processingTime": 464,
"processingTime": 409,
"result": {
"count": 4,
"count": 3,
"item": "biomancy:nutrient_paste"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
"ingredient": {
"item": "minecraft:nether_wart_block"
},
"nutrientsCost": 2,
"processingTime": 582,
"nutrientsCost": 16,
"processingTime": 750,
"result": {
"count": 14,
"count": 18,
"item": "biomancy:nutrient_paste"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
"item": "minecraft:sea_pickle"
},
"nutrientsCost": 2,
"processingTime": 464,
"processingTime": 409,
"result": {
"count": 4,
"count": 3,
"item": "biomancy:nutrient_paste"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
"ingredient": {
"item": "minecraft:warped_wart_block"
},
"nutrientsCost": 2,
"processingTime": 464,
"nutrientsCost": 3,
"processingTime": 409,
"result": {
"count": 4,
"count": 3,
"item": "biomancy:nutrient_paste"
}
}

0 comments on commit 0df371e

Please sign in to comment.