Skip to content

Commit

Permalink
feat(recipes): nerf Ravenous Claws recipe
Browse files Browse the repository at this point in the history
  • Loading branch information
Elenterius committed Sep 6, 2023
1 parent 14e3e03 commit 2d12e11
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1055,10 +1055,11 @@ private void registerBioForgeRecipes(Consumer<FinishedRecipe> consumer) {
ravenousClawsItem.setNutrients(ravenousClawsStack, Integer.MAX_VALUE);
BioForgeRecipeBuilder.create(ravenousClawsStack)
.addIngredient(ModItems.LIVING_FLESH.get())
.addIngredient(ModItems.BONE_FRAGMENTS.get(), 4)
.addIngredient(ModItems.MOB_CLAW.get(), 3)
.addIngredient(ModItems.FLESH_BITS.get(), 16)
.addIngredient(ModItems.TOUGH_FIBERS.get(), 6 * 3)
.addIngredient(ModItems.MINERAL_FRAGMENT.get(), 5 * 3)
.setCraftingCost(250)
.setCategory(ModBioForgeTabs.WEAPONS)
.unlockedBy(ModItems.LIVING_FLESH.get()).save(consumer);

Expand Down

0 comments on commit 2d12e11

Please sign in to comment.