So it seems as if I can add nx (1x for standard pixel density, 2x for retina or double, 3x and so on for higher pixel density screens). Here is the code to swap out one image for another when on 2x or 3x devices:

<picture>
<source media="(min-width: 600px)" srcset="/images/picture-demo/600.jpeg 1x,
/images/picture-demo/700.jpeg 2x, /images/picture-demo/800.jpeg 3x">
<img src="/images/picture-demo/fallback.jpeg" alt="fallback image">
</picture>
fallback image