Skip to content

Commit

Permalink
feat(recipes): add Claw recipe to Bio-Forge
Browse files Browse the repository at this point in the history
  • Loading branch information
Elenterius committed Sep 6, 2023
1 parent eda4464 commit 929245d
Showing 1 changed file with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1099,6 +1099,13 @@ private void registerBioForgeRecipes(Consumer<FinishedRecipe> consumer) {
.setCategory(ModBioForgeTabs.MISC)
.unlockedBy(ModItems.MOB_FANG.get()).save(consumer);

BioForgeRecipeBuilder.create(ModItems.MOB_CLAW.get())
.addIngredient(ModItems.MINERAL_FRAGMENT.get(), 7)
.addIngredient(ModItems.TOUGH_FIBERS.get(), 8)
.addIngredient(ModItems.STONE_POWDER.get(), 1)
.setCategory(ModBioForgeTabs.MISC)
.unlockedBy(ModItems.MOB_CLAW.get()).save(consumer);

BioForgeRecipeBuilder.create(Items.BONE)
.addIngredient(ModItems.BONE_FRAGMENTS.get(), 5)
.addIngredient(ModItems.MINERAL_FRAGMENT.get(), 1)
Expand Down

0 comments on commit 929245d

Please sign in to comment.