Pokédex data structure (Generation III): Difference between revisions
Tempest370 (talk | contribs) m (→Offsets) |
mNo edit summary |
||
Line 28: | Line 28: | ||
==Notes== | ==Notes== | ||
* '''Name''' is 12 bytes long and comes in capital letters. 0x00 fills possible empty bytes. This is the Species Type not the Pokémon name (e.g. "SEED" not "BULBASAUR") | * '''Name''' is 12 bytes long and comes in capital letters. 0x00 fills possible empty bytes. This is the Species Type not the Pokémon name (e.g. "SEED" not "BULBASAUR") | ||
* '''Height''' is measured in | * '''Height''' is measured in decimeters (10<sup>-1</sup> meters), and is then converted to other units in some games. | ||
* '''Weight''' is measured comes in hectograms (10<sup>-1</sup> kilograms), it is then converted to other units in some games. | * '''Weight''' is measured comes in hectograms (10<sup>-1</sup> kilograms), it is then converted to other units in some games. | ||
* '''Description pointers''' show the game where the description for the particular Pokémon is; remember the GBA is little endian and that a ROM file is loaded at an offset of 0x08000000. | * '''Description pointers''' show the game where the description for the particular Pokémon is; remember the GBA is little endian and that a ROM file is loaded at an offset of 0x08000000. |
Revision as of 15:40, 9 November 2010
Specs
A Pokédex data structure is a 36-byte (32-byte for Pokémon Emerald) piece of data.
Every Pokémon species in the Generation III games has data stored in the game that is used in Pokédex related functions and by certain moves, such as Low Kick.
Pokédex Data | |
---|---|
Name | 12 bytes |
Height (10-1 m) | 2 bytes |
Weight (10-1 kg) | 2 bytes |
Description pointers | 2 time 4 bytes (See Notes) |
Pokémon scale | 2 bytes |
Pokémon offset | 2 bytes |
Trainer scale | 2 bytes |
Trainer offset | 2 bytes |
Notes
- Name is 12 bytes long and comes in capital letters. 0x00 fills possible empty bytes. This is the Species Type not the Pokémon name (e.g. "SEED" not "BULBASAUR")
- Height is measured in decimeters (10-1 meters), and is then converted to other units in some games.
- Weight is measured comes in hectograms (10-1 kilograms), it is then converted to other units in some games.
- Description pointers show the game where the description for the particular Pokémon is; remember the GBA is little endian and that a ROM file is loaded at an offset of 0x08000000.
- Ruby, Sapphire, FireRed and LeafGreen have two pages of text while Emerald has only one - the second "description" simply does not exist.
- Pokémon offset is a signed 16-bit integer - if the raw value is 0x8000 or greater, then it is negative, with 0x8000 as -32,768 and 0xFFFF as -1.
Size compare function
In Generation III, there is a size page on the Pokédex, which uses data from the Pokédex to create a silhouette of the Pokémon standing next to the trainer. The size of both the trainer and Pokémon are determined by this formula:
x = (y × 256/z) pixels
Where y is the sprite size (64 pixels in this case) and z is the appropriate scale in hex and x rounded down is the size of silhouette. The game then resizes the sprite in a way similar a computer would do (without anti-aliasing of course).
The offset determines where exactly the silhouette will be placed. For example if Pokémon offset = 10 then the silhouette of the Pokémon will be 10 pixels from the top and 10 pixels from the left. (for some reason, that cannot be exactly simulated outside of the game).
Offsets
Ruby: 0x083B1858
Sapphire: 0x083B18B0
Emerald: 0x0856B5B0
FireRed: 0x0844E850
LeafGreen: 0x0844E270
|
This data structure article is part of Project Games, a Bulbapedia project that aims to write comprehensive articles on the Pokémon games. |