From a54104638ab2ec067aab5e766e80ecc528823d55 Mon Sep 17 00:00:00 2001 From: DBotThePony Date: Mon, 13 Mar 2023 19:27:08 +0700 Subject: [PATCH] Recipes for essence storage and essence servo --- .../mc/otm/datagen/recipes/CraftingTableRecipes.kt | 12 ++++++++++++ 1 file changed, 12 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 ad428b70c..5b471d904 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 @@ -283,4 +283,16 @@ fun addCraftingTableRecipes(consumer: Consumer) { .unlockedBy(MItemTags.TRITANIUM_INGOTS) .unlockedBy(MItemTags.TRITANIUM_NUGGETS) .save(consumer, modLocation("ingot_from_nuggets")) + + MatteryRecipe(MItems.ESSENCE_STORAGE, category = machinesCategory) + .row(MItems.MATTER_CAPACITOR_PARTS, Items.ENDER_EYE, MItemTags.ADVANCED_CIRCUIT) + .row(MItemTags.TRITANIUM_PLATES, MItems.MACHINE_FRAME, MItemTags.TRITANIUM_PLATES) + .row(MItemTags.GOLD_WIRES, MItemTags.HARDENED_GLASS, MItemTags.HARDENED_GLASS) + .build(consumer) + + MatteryRecipe(MItems.ESSENCE_SERVO, category = RecipeCategory.TOOLS) + .row(MItemTags.TRITANIUM_PLATES, MItems.QUANTUM_TRANSCEIVER, MItemTags.TRITANIUM_PLATES) + .rowB(Tags.Items.RODS_WOODEN) + .rowB(Tags.Items.RODS_WOODEN) + .build(consumer) }