I'm trying to create a menu-like text in the Terminal using Java.
I need it to look roughly like this:

I'm doing this using a printf method that looks like this:
System.out.printf("%d Pygmy Puffs at %d Knuts ea.: %10d %n", pygmy_ordered, pygmy, pygmy_total);
System.out.printf("%d bags of Extendable ears at %d Knuts ea.: %10d %n", extendable_ears_three_ordered, extendable_ears_three, extendable_ears_three_total);
However, this creates a result where the total for the items (last number) is an uneven amount of space away from the rest of the text line to line.

How would I go about fixing this?