From 63eb49810509e74ac0f6d07e8e6c20831ab5b2da Mon Sep 17 00:00:00 2001 From: DBotThePony Date: Sat, 1 Oct 2022 20:56:39 +0700 Subject: [PATCH] Tritanium door 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 cc5fcb910..86ee174ed 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 @@ -43,6 +43,13 @@ fun addCraftingTableRecipes(consumer: Consumer) { .unlockedBy("has_chest", has(Tags.Items.CHESTS)) .save(consumer) + MatteryRecipe(MBlocks.TRITANIUM_DOOR) + .rowAB(MItemTags.TRITANIUM_PLATES, MItemTags.TRITANIUM_PLATES) + .rowAB(MItemTags.TRITANIUM_PLATES, MItemTags.TRITANIUM_PLATES) + .rowAB(MItemTags.TRITANIUM_PLATES, MItemTags.TRITANIUM_PLATES) + .unlockedBy(MItemTags.TRITANIUM_PLATES) + .build(consumer) + MatteryRecipe(MBlocks.PLATE_PRESS) .row(MItems.ELECTRIC_PARTS, MItems.ENERGY_BUS, MItems.ELECTRIC_PARTS) .row(MItemTags.TRITANIUM_INGOTS, Items.BLAST_FURNACE, MItemTags.TRITANIUM_INGOTS)