From aca40e887d525dcc14cb3bd60a991a95e643e3c9 Mon Sep 17 00:00:00 2001 From: DBotThePony Date: Tue, 6 Sep 2022 08:26:46 +0700 Subject: [PATCH] Android station 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 668335b3c..5cd3ce59a 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 @@ -327,4 +327,11 @@ fun addCraftingTableRecipes(consumer: Consumer) { 200 ).unlockedBy("has_unrefined_block", has(MRegistry.UNREFINED_FLOOR_TILES.mappedColoredItems[color]!!)).save(consumer) } + + // станция андроида + MatteryRecipe(MItems.ANDROID_STATION) + .row(MItems.ELECTRIC_PARTS, MItemTags.ADVANCED_CIRCUIT, MItems.ELECTRIC_PARTS) + .row(MItemTags.PLATE_TRITANIUM, MItems.MACHINE_FRAME, MItemTags.PLATE_TRITANIUM) + .row(MItemTags.PLATE_TRITANIUM, MItems.ELECTRIC_PARTS, MItemTags.PLATE_TRITANIUM) + .build(consumer) }