diff --git a/src/data/kotlin/ru/dbotthepony/mc/otm/datagen/recipes/PainterRecipes.kt b/src/data/kotlin/ru/dbotthepony/mc/otm/datagen/recipes/PainterRecipes.kt index a3d384f29..762b23134 100644 --- a/src/data/kotlin/ru/dbotthepony/mc/otm/datagen/recipes/PainterRecipes.kt +++ b/src/data/kotlin/ru/dbotthepony/mc/otm/datagen/recipes/PainterRecipes.kt @@ -323,4 +323,28 @@ fun addPainterRecipes(consumer: RecipeOutput) { } consumer.accept(PainterArmorDyeRecipe(mapOf(null to 15)).toFinished(modLocation("painter/armor_clear_dye"))) + + consumer.accept(PainterRecipe( + Ingredient.of(MRegistry.TRITANIUM_BLOCK.item), + ItemStack(MItems.TRITANIUM_STRIPED_BLOCK), + mapOf(DyeColor.YELLOW to 1) + ).toFinished(modLocation("painter/tritanium_yellow_stripe"))) + + consumer.accept(PainterRecipe( + Ingredient.of(MRegistry.TRITANIUM_STAIRS.item), + ItemStack(MItems.TRITANIUM_STRIPED_STAIRS), + mapOf(DyeColor.YELLOW to 1) + ).toFinished(modLocation("painter/tritanium_yellow_stripe_stairs"))) + + consumer.accept(PainterRecipe( + Ingredient.of(MRegistry.TRITANIUM_SLAB.item), + ItemStack(MItems.TRITANIUM_STRIPED_SLAB), + mapOf(DyeColor.YELLOW to 1) + ).toFinished(modLocation("painter/tritanium_yellow_stripe_slab"))) + + consumer.accept(PainterRecipe( + Ingredient.of(MRegistry.TRITANIUM_WALL.item), + ItemStack(MItems.TRITANIUM_STRIPED_WALL), + mapOf(DyeColor.YELLOW to 1) + ).toFinished(modLocation("painter/tritanium_yellow_stripe_wall"))) }