From cdc9e7b40b1a9e59a4a2c5b70e2af3a8624017ff Mon Sep 17 00:00:00 2001 From: DBotThePony Date: Sun, 9 Feb 2025 13:34:55 +0700 Subject: [PATCH] Matter entangler 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 c32226065..980dada09 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 @@ -488,6 +488,13 @@ fun addCraftingTableRecipes(consumer: RecipeOutput) { .unlockedBy(Tags.Items.DYES) .build(consumer) + MatteryRecipe(MItems.MATTER_ENTANGLER, category = machinesCategory) + .row(MItemTags.ADVANCED_CIRCUIT, MItems.MATTER_TRANSFORM_MATRIX, MItemTags.ADVANCED_CIRCUIT) + .row(MItems.MATTER_CAPACITOR_PARTS, MItems.MACHINE_FRAME, MItems.MATTER_IO_PORT) + .row(MItemTags.DILITHIUM_GEMS, MItems.ANTIMATTER_TRANSFORM_MATRIX, MItemTags.DILITHIUM_GEMS) + .unlockedBy(MItems.ANTIMATTER_TRANSFORM_MATRIX) + .build(consumer) + MatteryRecipe(MItems.CHEST_UPGRADER, category = RecipeCategory.TOOLS) .rowAC(Items.REDSTONE, Items.REDSTONE) .row(MItemTags.TRITANIUM_PLATES, Items.ENDER_PEARL, MItemTags.TRITANIUM_PLATES)