From e1681a5c6ff17c73d30dc8a6ca5bc0504d445f43 Mon Sep 17 00:00:00 2001 From: DBotThePony Date: Thu, 20 Jul 2023 18:09:30 +0700 Subject: [PATCH] recipes for new machines --- .../otm/datagen/recipes/CraftingTableRecipes.kt | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) 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) }