Skip to content

Commit

Permalink
feat: add Malignant Flesh Block recipes
Browse files Browse the repository at this point in the history
  • Loading branch information
Elenterius committed Aug 1, 2023
1 parent 3d6df08 commit 798db02
Showing 1 changed file with 16 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -314,6 +314,22 @@ private void registerWorkbenchRecipes(Consumer<FinishedRecipe> consumer) {
slab(consumer, ModItems.MALIGNANT_FLESH_SLAB.get(), ModItems.MALIGNANT_FLESH_BLOCK.get());
stonecutterResultFromBase(consumer, ModItems.MALIGNANT_FLESH_STAIRS.get(), ModItems.MALIGNANT_FLESH_BLOCK.get());
stonecutterResultFromBase(consumer, ModItems.MALIGNANT_FLESH_SLAB.get(), ModItems.MALIGNANT_FLESH_BLOCK.get(), 2);

WorkbenchRecipeBuilder.shaped(ModItems.MALIGNANT_FLESH_BLOCK.get())
.define('F', ModItems.FLESH_BITS.get())
.define('V', ModItems.MALIGNANT_FLESH_VEINS.get())
.pattern("VVV")
.pattern("VFV")
.pattern("VVV")
.unlockedBy(hasName(ModItems.MALIGNANT_FLESH_VEINS.get()), has(ModItems.MALIGNANT_FLESH_VEINS.get()))
.save(consumer);

WorkbenchRecipeBuilder.shaped(ModItems.MALIGNANT_FLESH_BLOCK.get())
.define('S', ModItems.MALIGNANT_FLESH_SLAB.get())
.pattern(" S ")
.pattern(" S ")
.unlockedBy(hasName(ModItems.MALIGNANT_FLESH_SLAB.get()), has(ModItems.MALIGNANT_FLESH_SLAB.get()))
.save(consumer, BiomancyMod.createRL(getItemName(ModItems.MALIGNANT_FLESH_BLOCK.get()) + "_from_slabs"));
}

private void registerDigestingRecipes(Consumer<FinishedRecipe> consumer) {
Expand Down

0 comments on commit 798db02

Please sign in to comment.