TL;DR I extracted the textures of the game. They're in this catbox link:
You must be registered to see the links
(reuploads welcome)
Went on a bit of a journey to extract the textures from this game. The windows EXE version is encrypted, so I initially started with the APK version, which wasn't. After extracting the APK, I found out the images are stored in a "CTEX" format, though with the original filenames still there (so I knew for a fact they all started as PNGs). I figured out that the only tool that can convert the Godot Engine CTEX image format back to PNG was Godot itself, so I asked chatGPT kindly for a script (as I have very minimal python/gdscript knowledge) to import textures, convert them to PNG, then export them into a folder. I then took this script as a jumping off point, fixed a few errors, and adjusted it to work on the entire folder of textures so I wouldn't have to manually adjust it for each individual texture. Last thing I did was copy all the CTEX files to a folder and pointed the tool at it.
Then I found out that certain large textures were compressed using "ETC2" compression, which Godot doesn't support the uncompressing of. I couldn't find a way around it, so instead I switched gears and tried the web version of the game instead, which was also unencrypted. This did actually work, as the images had no compression, but the actual images themselves had some obvious visual artifacts, which isn't present in the textures in the EXE version. Presumably they were crunched a bit to help the browser load them more easily.
Unsatisfied, I went back to the EXE version (actually a slightly newer version of the game that released while I was working on this), and after fiddling around for a bit I coughed up 5 bucks and bought the
You must be registered to see the links
, which after around 30 minutes on my machine, found the encryption key. Then I uncompiled the EXE to a folder, copied all the CTEX files to another folder, pointed the tool at it, and...
View attachment 3881206
Honestly the feeling of victory is better than any orgasm (I'm still going to fap though).
Unfortunately as was explained earlier in the thread, actually piecing the frames back into animation is a whole other ordeal that I'm not interested in spending time on. Maybe it's possible to edit the textures and recompile the game so that textures and animations don't have effects over them so that you could screenshot/record them pretty cleanly, but I'll leave that for someone else to do. It'd also probably be possible to recompile the game without any of the save-checking/deleting bullshit, but that's really stretching my knowledge of Godot (which is extremely minimal.)
If you want the encryption key so you can decompile your own copy of the game to fiddle with, shoot me a message and I'll try to respond in a timely manner. I'll also upload the texture converting script to the "Tools & Tutorials" forum category in a little bit, after I make it a bit easier to use.