diff --git a/src/data/kotlin/ru/dbotthepony/mc/otm/datagen/recipes/CraftingTableRecipes.kt b/src/data/kotlin/ru/dbotthepony/mc/otm/datagen/recipes/CraftingTableRecipes.kt index ca9ed68bc..0db9748ed 100644 --- a/src/data/kotlin/ru/dbotthepony/mc/otm/datagen/recipes/CraftingTableRecipes.kt +++ b/src/data/kotlin/ru/dbotthepony/mc/otm/datagen/recipes/CraftingTableRecipes.kt @@ -401,4 +401,20 @@ fun addCraftingTableRecipes(consumer: Consumer) { .rowB(Tags.Items.RODS_WOODEN) .unlockedBy(Items.FLINT_AND_STEEL) .build(consumer) + + MatteryRecipe(MItems.POWERED_FURNACE, category = machinesCategory) + .row(Items.FURNACE, MItems.MACHINE_FRAME, Items.FURNACE) + .unlockedBy(MItems.MACHINE_FRAME) + .build(consumer) + + MatteryRecipe(MItems.POWERED_SMOKER, category = machinesCategory) + .row(Items.SMOKER, MItems.MACHINE_FRAME, Items.SMOKER) + .unlockedBy(MItems.MACHINE_FRAME) + .build(consumer) + + MatteryRecipe(MItems.POWERED_BLAST_FURNACE, category = machinesCategory) + .rowAC(Items.FURNACE, Items.FURNACE) + .row(MItems.ELECTROMAGNET, MItems.MACHINE_FRAME, MItems.ELECTROMAGNET) + .unlockedBy(MItems.MACHINE_FRAME) + .build(consumer) }