Hi Runey, have you considered increasing the level of compression of the images to reduce the overall size of the game? I used cwebp to re-encode the images directory with cwebp quality level 25. Doing so reduced the size of that directory from ~7.1 GB to ~1.6GB. From the few images I spotchecked it seems like the increased compression doesn't damage the quality of the images too badly.
On Linux I achieved it like this:
find ./ -name \*.webp -print0 | xargs -I'{}' -0 -P 12 -n 1 cwebp -q 25 -o '{}.new' '{}'
Of course, if you were feeling devious, you could tie the higher quality images to your Patreon tiers... But I think most people would be willing to make the quality trade-off for smaller download sizes and (potentially) more content, assuming it's holding you back.