From a39bfd5a47bad5fae323c9b22dc93514add03874 Mon Sep 17 00:00:00 2001 From: GearShocky Date: Fri, 28 Mar 2025 18:23:28 +0500 Subject: [PATCH] Industrial ladder recipe --- .../mc/otm/datagen/recipes/DecorativesRecipes.kt | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/data/kotlin/ru/dbotthepony/mc/otm/datagen/recipes/DecorativesRecipes.kt b/src/data/kotlin/ru/dbotthepony/mc/otm/datagen/recipes/DecorativesRecipes.kt index f4bf0eb48..e1763a461 100644 --- a/src/data/kotlin/ru/dbotthepony/mc/otm/datagen/recipes/DecorativesRecipes.kt +++ b/src/data/kotlin/ru/dbotthepony/mc/otm/datagen/recipes/DecorativesRecipes.kt @@ -412,6 +412,15 @@ fun addDecorativesRecipes(provider: MatteryRecipeProvider, consumer: RecipeOutpu .unlockedBy(MItems.METAL_MESH) .build(consumer, modLocation("decorative/metal_railing")) + MatteryRecipe(MItems.INDUSTRIAL_LADDER, count = 6, category = RecipeCategory.BUILDING_BLOCKS) + .rowAC(MItems.METAL_MESH, MItems.METAL_MESH) + .row(MItems.METAL_MESH, MItems.METAL_MESH, MItems.METAL_MESH) + .rowAC(MItems.METAL_MESH, MItems.METAL_MESH) + .unlockedBy(Items.IRON_BARS) + .unlockedBy(Tags.Items.NUGGETS_IRON) + .unlockedBy(MItems.METAL_MESH) + .build(consumer, modLocation("decorative/industrial_ladder")) + // Голо табличка MatteryRecipe(MItems.HOLO_SIGN, category = RecipeCategory.DECORATIONS) .row(MItemTags.BASIC_CIRCUIT, MItemTags.TRITANIUM_PLATES, MItemTags.HARDENED_GLASS_PANES_COLORLESS)