Skip to content

Commit

Permalink
feat(recipes): add Fang 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 ba4ada0 commit eda4464
Showing 1 changed file with 8 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -954,7 +954,7 @@ private void registerBioForgeRecipes(Consumer<FinishedRecipe> consumer) {
.setCategory(ModBioForgeTabs.BLOCKS)
.unlockedBy(ModItems.FLESH_BITS.get()).save(consumer);

BioForgeRecipeBuilder.create(ModItems.FLESH_SPIKE.get(), 4)
BioForgeRecipeBuilder.create(ModItems.FLESH_SPIKE.get(), 1)
.addIngredient(ModItems.BONE_FRAGMENTS.get(), 2)
.addIngredient(ModItems.MINERAL_FRAGMENT.get(), 2)
.addIngredient(ModItems.FLESH_BITS.get(), 4)
Expand Down Expand Up @@ -1092,6 +1092,13 @@ private void registerBioForgeRecipes(Consumer<FinishedRecipe> consumer) {
.setCategory(ModBioForgeTabs.MISC)
.unlockedBy(ModItems.AGEING_SERUM.get()).save(consumer);

BioForgeRecipeBuilder.create(ModItems.MOB_FANG.get())
.addIngredient(ModItems.MINERAL_FRAGMENT.get(), 6)
.addIngredient(ModItems.BONE_FRAGMENTS.get(), 8)
.addIngredient(ModItems.STONE_POWDER.get(), 1)
.setCategory(ModBioForgeTabs.MISC)
.unlockedBy(ModItems.MOB_FANG.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 eda4464

Please sign in to comment.