From 7ec4a66923021dbbc784628feb9271ecfd1f242a Mon Sep 17 00:00:00 2001 From: DBotThePony Date: Sun, 9 Jul 2023 15:59:11 +0700 Subject: [PATCH] Wireless android charger crafting recipe --- .../mc/otm/datagen/recipes/CraftingTableRecipes.kt | 7 +++++++ 1 file changed, 7 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 0b68c0418..ca9ed68bc 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 @@ -295,6 +295,13 @@ fun addCraftingTableRecipes(consumer: Consumer) { .row(MItemTags.TRITANIUM_PLATES, MItems.ELECTRIC_PARTS, MItemTags.TRITANIUM_PLATES) .build(consumer) + // беспроводной зарядник андроидов + MatteryRecipe(MItems.ANDROID_CHARGER, category = machinesCategory) + .row(MItems.ELECTRIC_PARTS, MItems.QUANTUM_TRANSCEIVER, MItems.ELECTRIC_PARTS) + .row(MItemTags.TRITANIUM_PLATES, MItems.MACHINE_FRAME, MItemTags.TRITANIUM_PLATES) + .row(MItemTags.TRITANIUM_PLATES, MItems.MACHINE_FRAME, MItemTags.TRITANIUM_PLATES) + .build(consumer) + // Энерго меч MatteryRecipe(MItems.ENERGY_SWORD, category = RecipeCategory.COMBAT) .rowBC(MItemTags.TRITANIUM_PLATES, MItemTags.GOLD_WIRES)