o.O
Did you make all the graphics yourself?
What size are the tiles?
I did not actually make all the graphics. They were provided to me by Zera, along with most of the other assets. I just put together what was there and made some code. These "assets" include tile data, sprite data, almost all the other image data, and much of the text data. A document provided to project coders explain how some of the complicated stuff (like the battle system) should work. It doesn't explain every single detail, so that's where I've got to use a little creativity to help fill in the gaps. Like that transition.
The tiles are 16x16 pixels, 4 level grayscale (64 bytes each tile). For rendering purposes, the tiles are further subdivided into 8 pixels wide, 16 pixels high. There's a total of 128 tiles on the tilemap, not counting any of the sprites which *should* go there. The sprites themselves (not in the project quite yet) number about 80-ish, and that's just the bare-bones stuff. Sprites that have flipped orientations are done via code and not by keeping a separate instance of them in the sprite data.