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 7a02e888c..ebedd418c 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 @@ -1,6 +1,7 @@ package ru.dbotthepony.mc.otm.datagen.recipes import net.minecraft.data.recipes.* +import net.minecraft.tags.ItemTags import net.minecraft.world.item.DyeColor import net.minecraft.world.item.ItemStack import net.minecraft.world.item.Items @@ -435,4 +436,12 @@ fun addDecorativesRecipes(provider: MatteryRecipeProvider, consumer: RecipeOutpu builder.build(consumer) } + + for ((color, item) in MRegistry.STAR_CHAIR.allItems) { + MatteryRecipe(item, category = RecipeCategory.DECORATIONS) + .rowB(color?.tag) + .row(MItemTags.TRITANIUM_PLATES, ItemTags.WOOL, MItemTags.TRITANIUM_PLATES) + .row(MItemTags.TRITANIUM_PLATES, MItemTags.CARBON_PLATES, MItemTags.TRITANIUM_PLATES) + .build(consumer) + } }