How to change the page numbers of these files in reverse order with Find and Regex?

The page numbers are in reverse order, I want to change them in ascending order.

They are from 152 to 162 in the name on the hard disk, but actually it was a mistake, they should have the files in the reverse order.

So after replace I will have 162 instead of 151 and so on.

Example:

masini-unelte-emil-botez-carte-p1_compress_Page_151.jpg
masini-unelte-emil-botez-carte-p1_compress_Page_152.jpg
masini-unelte-emil-botez-carte-p1_compress_Page_153.jpg
masini-unelte-emil-botez-carte-p1_compress_Page_154.jpg
masini-unelte-emil-botez-carte-p1_compress_Page_155.jpg
masini-unelte-emil-botez-carte-p1_compress_Page_156.jpg
masini-unelte-emil-botez-carte-p1_compress_Page_157.jpg
masini-unelte-emil-botez-carte-p1_compress_Page_158.jpg
masini-unelte-emil-botez-carte-p1_compress_Page_159.jpg
masini-unelte-emil-botez-carte-p1_compress_Page_160.jpg
masini-unelte-emil-botez-carte-p1_compress_Page_161.jpg
masini-unelte-emil-botez-carte-p1_compress_Page_162.jpg

So the basis would be this.

Find:

masini-unelte-emil-botez-carte-p1_compress_Page_d+(.*?).jpg`

From here I have to select all the names and change the part of d+ i.e. the numbers, so that I can reverse them.

I try this, but not very good:

Find:

_Page_(15([1-9])|16([0-2])).jpg

Replace:

_Page_231.jpg