Welcome to Data Crystal's new home! Data Crystal is now part of the TCRF family (sort of).
The wiki has recently moved; please report any issues in Discord. Pardon the dust.

Dragon Quest Monsters: Joker/Notes

From Data Crystal
< Dragon Quest Monsters: Joker
Revision as of 04:48, 9 February 2024 by ExcaliburZero (talk | contribs) (Create page with info on d16 image file format)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Chip tiny.png The following article is a Notes Page for Dragon Quest Monsters: Joker.

d16 Image Files

The game stores cutscene image files in the binary "d16" file format. Values are stored as little endian.

u32 magic @ 0x00; // "D16 " (44 31 36 00)
u16 width @ 0x04;
u16 height @ 0x06;

u16 pixels[width * height] @ 0x08; // 16bit colors, 0b1BBBBBGGGGGRRRRR

External links