Pokémon species data structure (Generation III): Difference between revisions

From Bulbapedia, the community-driven Pokémon encyclopedia.
Jump to navigationJump to search
(navtemplate)
m (→‎Egg Groups: note about Pokémon in a single egg group having the value twice)
(29 intermediate revisions by 20 users not shown)
Line 1: Line 1:
==Specs==
A '''base stats structure''' is a 28-byte structure that determines all information inherent to a Pokémon species, such as base [[stats]], [[type]]s, [[Egg Group]]s, and [[Effort values|EV yield]]. Every [[Pokémon species]] in the [[Generation III]] {{pkmn|games}} has a base stats structure stored in the game's ROM.


A '''base stats structure''' is a 28-byte piece of data
==Notes==
 
{| style="border: 1px solid #88a; background: #f8f8ff; padding: 0.5em; border-collapse: collapse; float: right; margin: 0 0 0.5em 0.5em;" cellpadding="2"
Every [[Pokémon|Pokémon species]] in the [[Generation III]] {{pkmn|games}} has a 28-byte base stats structure stored in the game's ROM somewhere. It determines all information inherent to the species, such as base Sp. Defense, [[Elemental types|Types]], [[Egg Groups]], and [[Effort values|EV yield]].
 
{| align="center" style="border: 1px solid #88a; background: #f8f8ff; padding: 0.5em;" cellspacing="3"
|-  
|-  
! style="text-align: center; background: #ccf;" | '''Base Stats''' || colspan="2" style="text-align: center; background: #ccf;" | Data whose names are marked with an asterisk (*) have more information below the table.
! colspan="3" style="text-align: center; background: #{{hoenn color}};" | Base Stats
|-
|-
| Name || Type || Description
! || type || offset
|-
|-
| Base HP || byte || The base HP used in calculating Pokémon of the species's [[stats|HP]].
| Base [[Stats|HP]] || byte || 0
|-
|-
| Base Attack || byte || The base Attack used in calculating a Pokémon of the species's [[stats|Attack]].
| Base [[Stats|Attack]] || byte || 1
|-
|-
| Base Defense || byte || The base Defense used in calculating a Pokémon of the species's [[stats|Defense]].
| Base [[Stats|Defense]] || byte || 2
|-  
|-  
| Base Speed || byte || The base Speed used in calculating a Pokémon of the species's [[stats|Speed]].
| Base [[Stats|Speed]] || byte || 3
|-
|-
| Base Sp. Attack || byte || The base Sp. Attack used in calculating a Pokémon of the species's [[stats|Sp. Attack]].
| Base [[Stats|Sp. Attack]] || byte || 4
|-
|-
| Base Sp. Defense || byte || The base Sp. Defense used in calculating a Pokémon of the species's [[stats|Sp. Defense]].
| Base [[Stats|Sp. Defense]] || byte || 5
|-
|-
| [[Elemental types|Type 1]]* || byte || The first type of Pokémon of the species.
| [[Type|Type 1]] || byte || 6
|-
|-
| [[Elemental types|Type 2]]* || byte || The second type of Pokémon of the species.
| Type 2 || byte || 7
|-
|-
| [[Catch rate]] || byte || The catch rate used in calculating the probability that a wild Pokémon of the species will be caught.
| [[Catch rate]] || byte || 8
|-
|-
| [[Experience| Base Exp. yield]] || byte || The base Experience yield used in calculating how many Exp. points Pokémon who defeat another Pokémon of the species receives.
| [[Experience| Base Exp. yield]] || byte || 9
|-
|-
| [[Effort values|Effort yield]]* || word || How many EVs Pokémon who defeat another Pokémon of the species receives, and in what stats.
| [[Effort values|Effort yield]] || word || 10
|-
|-
| [[Item]] 1* || word || An item wild Pokémon of the species may hold.
| [[List of items by index number (Generation III)|Item]] 1 || word || 12
|-
|-
| [[Item]] 2* || word || Another item wild Pokémon of the species may hold.
| Item 2 || word || 14
|-
|-
| [[Personality value#Gender|Gender]] || byte || The value that is compared against the [[personality value]] of Pokémon of the species when determining what gender they will be, i.e. represents rate of females vs. males of the species.
| [[Personality value#Gender|Gender]] || byte || 16
|-
|-
| Steps to hatch || byte || The cumulative number of steps that must be taken before an [[Pokémon Breeding|Egg]] of the species hatches, divided by 256.
| [[Egg cycles]] || byte || 17
|-
|-
| Base [[Happiness]] || byte || The happiness/tameness at which Pokémon of the species have when first caught.
| Base [[friendship]] || byte || 18
|-
|-
| [[Experience|Level-up type]] || byte || The pattern of Experience which Pokémon of the species require to level up.
| [[Experience|Level-up type]] || byte || 19
|-
|-
| [[Egg groups|Egg group]] 1* || byte || Indicates an Egg Group that the species belongs to.
| [[Egg Group]] 1 || byte || 20
|-
|-
| [[Egg groups|Egg group]] 2* || byte || Indicates another Egg Group that the species belongs to.
| Egg Group 2 || byte || 21
|-
|-
| [[Abilities|Ability]] 1 || byte || Indicates a special ability that Pokémon of the species may have.
| [[Ability]] 1 || byte || 22
|-
|-
| [[Abilities|Ability]] 2 || byte || Indicates another special ability that Pokémon of the species may have.
| Ability 2 || byte || 23
|-
|-
| Safari Zone Rate || byte || Determines rate at which Pokémon of the species flee when encountered in the Safari Zone. Only Pokémon that appear in the Safari Zone have this set.
| Safari Zone rate || byte || 24
|-
|-
| Color* || byte || The Pokémon's color.
| [[List of Pokémon by color|Color]] and Flip || byte || 25
|-
|-
| 0000 || word || Padding.
| Padding{{tt|*|0's}} || word || 26.
|}
|}


==Notes==
===Types===
===Types===
The [[type]]s are associated with the following values:


Types are enumerated like this:
{| style="border: 1px solid #88a; background: #f8f8ff; padding: 0.5em; border-collapse: collapse; margin: 0 0 0.5em 0.5em" cellpadding=2
 
|
{|
{| style="text-align:center"
! Value || Type
|-
| 0 || style="{{roundy|20px}} background:#{{Normal color}}; border: 1px solid #{{Normal color dark}}" | {{tcolor|Normal|FFF}}
|-
| 1 || style="{{roundy|20px}} background:#{{Fighting color}}; border: 1px solid #{{Fighting color dark}}" | {{tcolor|Fighting|FFF}}
|-
| 2 || style="{{roundy|20px}} background:#{{Flying color}}; border: 1px solid #{{Flying color dark}}" | {{tcolor|Flying|FFF}}
|-
| 3 || style="{{roundy|20px}} background:#{{Poison color}}; border: 1px solid #{{Poison color dark}}" | {{tcolor|Poison|FFF}}
|-
| 4 || style="{{roundy|20px}} background:#{{Ground color}}; border: 1px solid #{{Ground color dark}}" | {{tcolor|Ground|FFF}}
|-
| 5 || style="{{roundy|20px}} background:#{{Rock color}}; border: 1px solid #{{Rock color dark}}" | {{tcolor|Rock|FFF}}
|}
|
{| style="text-align:center"
! Value || Type
|-
| 6 || style="{{roundy|20px}} background:#{{Bug color}}; border: 1px solid #{{Bug color dark}}" | {{tcolor|Bug|FFF}}
|-
| 7 || style="{{roundy|20px}} background:#{{Ghost color}}; border: 1px solid #{{Ghost color dark}}" | {{tcolor|Ghost|FFF}}
|-
| 8 || style="{{roundy|20px}} background:#{{Steel color}}; border: 1px solid #{{Steel color dark}}" | {{tcolor|Steel|FFF}}
|-
| 9 || style="{{roundy|20px}} background:#{{Unknown color}}; border: 1px solid #{{Unknown color dark}}" | {{tcolor|???|FFF}}
|-
| 10 || style="{{roundy|20px}} background:#{{Fire color}}; border: 1px solid #{{Fire color dark}}" | {{tcolor|Fire|FFF}}
|-
| 11 || style="{{roundy|20px}} background:#{{Water color}}; border: 1px solid #{{Water color dark}}" | {{tcolor|Water|FFF}}
|}
|
{| style="text-align:center"
! Value || Type
|-
| 12 || style="{{roundy|20px}} background:#{{Grass color}}; border: 1px solid #{{Grass color dark}}" | {{tcolor|Grass|FFF}}
|-
| 13 || style="{{roundy|20px}} background:#{{Electric color}}; border: 1px solid #{{Electric color dark}}" | {{tcolor|Electric|FFF}}
|-
| 14 || style="{{roundy|20px}} background:#{{Psychic color}}; border: 1px solid #{{Psychic color dark}}" | {{tcolor|Psychic|FFF}}
|-
|-
| 00. Normal
| 15 || style="{{roundy|20px}} background:#{{Ice color}}; border: 1px solid #{{Ice color dark}}" | {{tcolor|Ice|FFF}}
| 01. Fighting
| 02. Flying
| 03. Poison
| 04. Ground
| 05. Rock
|-
|-
| 06. Bug
| 16 || style="{{roundy|20px}} background:#{{Dragon color}}; border: 1px solid #{{Dragon color dark}}" | {{tcolor|Dragon|FFF}}
| 07. Ghost
| 08. Steel
| 09. ???
| 10. Fire
| 11. Water
|-
|-
| 12. Grass
| 17 || style="{{roundy|20px}} background:#{{Dark color}}; border: 1px solid #{{Dark color dark}}" | {{tcolor|Dark|FFF}}
| 13. Electric
|}
| 14. Psychic
| 15. Ice
| 16. Dragon
| 17. Dark
|}
|}
 
If the Pokémon only has one type, both '''Type 1''' and '''Type 2''' will be set to the same value.
Type 9 (???) can be an actual type for a species as well as a type for an attack.


===Effort yield===
===Effort yield===
 
Each [[stats|stat]] is assigned two bits to determine how many [[Effort values|EVs]] the Pokémon will give in that stat. The last 4 bits in the byte are empty (0).
Certain bits count for particular stats:
{| style="border: 1px solid #88a; background: #f8f8ff; padding: 0.5em; border-collapse: collapse; margin: 0 0 0.5em 0.5em" cellpadding=2
<pre>
! Bits || Stat
(MSB)                    (LSB)
|-
0000  11 11  11  11  11  11
| 0-1 || HP
empty SDF SAK SPD DEF ATK  HP
|-
</pre>
| 2-3 || Attack
|-
| 4-5 || Defense
|-
| 6-7 || Speed
|-
| 8-9 || Special Attack
|-
| 10-11 || Special Defense
|}


===Items===
===Items===
Items in the first &quot;slot&quot; have a 50% probability of being on the Pokémon, while 5% in the second &quot;slot&quot;. If it's the same item in both then it's up to 100%.
If an [[List of items by index number (Generation III)|item]] is assigned to '''Item 1''', the Pokémon will have a 50% chance of [[held item|having that item]] when encountered in the wild. An item assigned to '''Item 2''' will have a 5% chance of being held. If both '''Item 1''' and '''Item 2''' are the same, then the Pokémon will always be holding that item when it is encountered.


===Gender===
===Gender===
Gender is zero for always-male Pokémon, 254 for always-female Pokémon and 255 for gender-neutral. Everything inbetween is a percentage value: Pikachu, 50% chance of being female, has 127.
{{main|Personality value#Gender|Personality value → Gender}}
This value determines the chance that a Pokémon will be male or female. If the species is not all male, all female, or genderless, then this value is compared to the lowest byte of a Pokémon's personality value to determine its [[gender]].
{| style="border: 1px solid #88a; background: #f8f8ff; padding: 0.5em; border-collapse: collapse; margin: 0 0 0.5em 0.5em" cellpadding=2
! Value || Gender
|-
| 0 || Always male {{male}}
|-
| 1-253 || Mixed {{male}} / {{female}}
|-
| 254 || Always female {{female}}
|-
| 255 || Genderless
|}
 
===Level-up Type===
The following values correspond to the different [[experience|growth rates]] a Pokémon can have:
{| style="border: 1px solid #88a; background: #f8f8ff; padding: 0.5em; border-collapse: collapse; margin: 0 0 0.5em 0.5em" cellpadding=2
! Value || Growth || Lv100 Exp
|-
| 0 || Medium Fast || style="text-align:right" | 1,000,000
|-
| 1 || Erratic || style="text-align:right" | 600,000
|-
| 2 || Fluctuating || style="text-align:right" | 1,640,000
|-
| 3 || Medium Slow || style="text-align:right" | 1,059,860
|-
| 4 || Fast || style="text-align:right" | 800,000
|-
| 5 || Slow || style="text-align:right" | 1,250,000
|}


===Egg Groups===
===Egg Groups===
This determines with which type of Pokémon the Pokémon can breed to get eggs. See [[Egg groups|Egg groups]]. These are the direct values of the groups:
The following values correspond to the different [[Egg Group]]s a Pokémon can belong to:


{| style="border: 1px solid #88a; padding: 0.5em;" cellspacing="3"
{| style="border: 1px solid #88a; background: #f8f8ff; padding: 0.5em; border-collapse: collapse; margin: 0 0 0.5em 0.5em" cellpadding=2
|01. Monster
|
|02. Water 1
{| style="text-align:center"
|04. Bug
! Value || Type
|05. Flying
|-
|06. Ground
| 1 || {{egg|Monster}}
|-
| 2 || {{egg|Water 1}}
|-
| 3 || {{egg|Bug}}
|-
| 4 || {{egg|Flying}}
|-
| 5 || {{egg|Field}}
|}
|
{| style="text-align:center"
! Value || Type
|-
| 6 || {{egg|Fairy}}
|-
| 7 || {{egg|Grass}}
|-
| 8 || {{egg|Human-Like}}
|-
|-
|07. Fairy
| 9 || {{egg|Water 3}}
|08. Plant
|09. Humanshape
|10. Water 3
|11. Mineral
|-
|-
|12. Indeterminate
| 10 || {{egg|Mineral}}
|13. Water 2
|14. Ditto
|15. Dragon
|16. No Egg
|}
|}
|
{| style="text-align:center"
! Value || Type
|-
| 11 || {{egg|Amorphous}}
|-
| 12 || {{egg|Water 2}}
|-
| 13 || {{egg|Ditto}}
|-
| 14 || {{egg|Dragon}}
|-
| 15 || {{egg|Undiscovered}}
|}
|}
For Pokémon only in a single Egg Group, both entries are the same value.


===Colors===
===Safari Zone rate===
Colors don't really affect any part of the game mechanics, but they are used in [[Pokédex]] search function; though the MSB bit is set on some Pokémon.
This value determines the rate at which the Pokémon will [[escape|flee]] when encountered in the [[Safari Zone]]. Only Pokémon that appear in the Safari Zone have this value set.
Here is the list of the values and their relating colors:
 
{| style="border: 1px solid #88a; padding: 0.5em;" cellspacing="3"
===Color and Flip===
|00. Red
Color is used in the [[Pokédex]]'s search function in {{3v2|Ruby|Sapphire|Emerald}}. The following values correspond to the different possible colors:
|01. Blue
 
|02. Yellow
{| style="border: 1px solid #88a; background: #f8f8ff; padding: 0.5em; border-collapse: collapse; margin: 0 0 0.5em 0.5em" cellpadding=2
|04. Green
|
|05. Black
{| style="text-align:center"
! Value || Type
|-
| 0 || Red
|-
| 1 || Blue
|-
| 2 || Yellow
|-
| 3 || Green
|-
|-
|06. Brown
| 4 || Black
|07. Purple
|08. Gray
|09. White
|10. Pink
|}
|}
|
{| style="text-align:center"
! Value || Type
|-
| 5 || Brown
|-
| 6 || Purple
|-
| 7 || Gray
|-
| 8 || White
|-
| 9 || Pink
|}
|}
"Flip" refers to whether the Pokémon's image is flipped when seen in the summary screen as opposed to when seen in the [[Pokédex]] or [[Pokémon Storage System|PC]]. This is determined by bit 7 (the most significant bit) of this field. For some Pokémon, such as {{p|Poliwag}}, {{p|Kingler}}, and {{p|Unown}}, this bit is set and the image is not flipped (i.e., the image is oriented the same in both places).


==Storage==
==Storage==
{{incomplete|section|Are the Ruby and Sapphire addresses only for US games? For non-US games?}}
The following are the RAM offsets for the first base stats entry ({{p|Bulbasaur}}) in each GBA game. Since a game is loaded into RAM at 0x08000000, this means that the offset in a ROM dump will only use the last six digits.
{| style="border: 1px solid #88a; background: #f8f8ff; padding: 0.5em; border-collapse: collapse; margin: 0 0 0.5em 0.5em" cellpadding=2
! Game || Address
|-
| '''{{color2|{{ruby color}}|Pokémon Ruby and Sapphire Versions|Ruby}}''' || 0x081FEC34
|-
| '''{{color2|{{sapphire color}}|Pokémon Ruby and Sapphire Versions|Sapphire}}''' || 0x081FEBC4
|-
| '''{{color2|{{emerald color}}|Pokémon Emerald Version|Emerald}}''' || 0x082F0D70
|-
| '''{{color2|{{emerald color}}|Pokémon Emerald Version|Emerald}}'''<sup>EN-US</sup> || 0x083203E8
|-
| '''{{color2|{{firered color}}|Pokémon FireRed and LeafGreen Versions|FireRed}}''' || 0x082111A8
|-
| '''{{color2|{{firered color}}|Pokémon FireRed and LeafGreen Versions|FireRed}}'''<sup>EN-US</sup> || 0x082547A0
|-
| '''{{color2|{{leafgreen color}}|Pokémon FireRed and LeafGreen Versions|LeafGreen}}''' || 0x08211184
|-
| '''{{color2|{{leafgreen color}}|Pokémon FireRed and LeafGreen Versions|LeafGreen}}'''<sup>EN-US</sup> || 0x0825477C
|}


The following are ROM offsets for the first entry (Bulbasaur) in each GBA game (US version?):
===Fingerprint===
Below is a sample of the data for the first few base stat data structures.
<pre>
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  // ?????????? (used for unknown/glitch Pokémon)
2D 31 31 2D 41 41 0C 03 2D 40 00 01 00 00 00 00 1F 14 46 03 01 07 41 00 00 03 00 00  // BULBASAUR
3C 3E 3F 3C 50 50 0C 03 2D 8D 00 05 00 00 00 00 1F 14 46 03 01 07 41 00 00 03 00 00  // IVYSAUR
50 52 53 50 64 64 0C 03 2D D0 00 06 00 00 00 00 1F 14 46 03 01 07 41 00 00 03 00 00  // VENUSAUR
27 34 2B 41 3C 32 0A 0A 2D 41 40 00 00 00 00 00 1F 14 46 03 01 0E 42 00 00 00 00 00  // CHARMANDER
3A 40 3A 50 50 41 0A 0A 2D 8E 40 01 00 00 00 00 1F 14 46 03 01 0E 42 00 00 00 00 00  // CHARMELEON
4E 54 4E 64 6D 55 0A 02 2D D1 00 03 00 00 00 00 1F 14 46 03 01 0E 42 00 00 00 00 00  // CHARIZARD
2C 30 41 2B 32 40 0B 0B 2D 42 10 00 00 00 00 00 1F 14 46 03 01 02 43 00 00 01 00 00  // SQUIRTLE
3B 3F 50 3A 41 50 0B 0B 2D 8F 10 04 00 00 00 00 1F 14 46 03 01 02 43 00 00 01 00 00  // WARTORTLE
4F 53 64 4E 55 69 0B 0B 2D D2 00 0C 00 00 00 00 1F 14 46 03 01 02 43 00 00 01 00 00  // BLASTOISE
...
</pre>


* Ruby: 0x001fec34
{{data structure}}<br>
* Sapphire: 0x001febc4
{{Project Games notice|data structure}}
* Emerald: 0x002f0d70
* FireRed: 0x002111A8
* LeafGreen: 0x00211184
* LeafGreen (EN-US): 0x0025477C
{{data structure}}

Revision as of 22:58, 1 February 2017

A base stats structure is a 28-byte structure that determines all information inherent to a Pokémon species, such as base stats, types, Egg Groups, and EV yield. Every Pokémon species in the Generation III games has a base stats structure stored in the game's ROM.

Notes

Base Stats
type offset
Base HP byte 0
Base Attack byte 1
Base Defense byte 2
Base Speed byte 3
Base Sp. Attack byte 4
Base Sp. Defense byte 5
Type 1 byte 6
Type 2 byte 7
Catch rate byte 8
Base Exp. yield byte 9
Effort yield word 10
Item 1 word 12
Item 2 word 14
Gender byte 16
Egg cycles byte 17
Base friendship byte 18
Level-up type byte 19
Egg Group 1 byte 20
Egg Group 2 byte 21
Ability 1 byte 22
Ability 2 byte 23
Safari Zone rate byte 24
Color and Flip byte 25
Padding* word 26.

Types

The types are associated with the following values:

Value Type
0 Normal
1 Fighting
2 Flying
3 Poison
4 Ground
5 Rock
Value Type
6 Bug
7 Ghost
8 Steel
9 ???
10 Fire
11 Water
Value Type
12 Grass
13 Electric
14 Psychic
15 Ice
16 Dragon
17 Dark

If the Pokémon only has one type, both Type 1 and Type 2 will be set to the same value.

Effort yield

Each stat is assigned two bits to determine how many EVs the Pokémon will give in that stat. The last 4 bits in the byte are empty (0).

Bits Stat
0-1 HP
2-3 Attack
4-5 Defense
6-7 Speed
8-9 Special Attack
10-11 Special Defense

Items

If an item is assigned to Item 1, the Pokémon will have a 50% chance of having that item when encountered in the wild. An item assigned to Item 2 will have a 5% chance of being held. If both Item 1 and Item 2 are the same, then the Pokémon will always be holding that item when it is encountered.

Gender

Main article: Personality value → Gender

This value determines the chance that a Pokémon will be male or female. If the species is not all male, all female, or genderless, then this value is compared to the lowest byte of a Pokémon's personality value to determine its gender.

Value Gender
0 Always male
1-253 Mixed /
254 Always female
255 Genderless

Level-up Type

The following values correspond to the different growth rates a Pokémon can have:

Value Growth Lv100 Exp
0 Medium Fast 1,000,000
1 Erratic 600,000
2 Fluctuating 1,640,000
3 Medium Slow 1,059,860
4 Fast 800,000
5 Slow 1,250,000

Egg Groups

The following values correspond to the different Egg Groups a Pokémon can belong to:

Value Type
1 Monster
2 Water 1
3 Bug
4 Flying
5 Field
Value Type
6 Fairy
7 Grass
8 Human-Like
9 Water 3
10 Mineral
Value Type
11 Amorphous
12 Water 2
13 Ditto
14 Dragon
15 Undiscovered

For Pokémon only in a single Egg Group, both entries are the same value.

Safari Zone rate

This value determines the rate at which the Pokémon will flee when encountered in the Safari Zone. Only Pokémon that appear in the Safari Zone have this value set.

Color and Flip

Color is used in the Pokédex's search function in Ruby, Sapphire, and Emerald. The following values correspond to the different possible colors:

Value Type
0 Red
1 Blue
2 Yellow
3 Green
4 Black
Value Type
5 Brown
6 Purple
7 Gray
8 White
9 Pink

"Flip" refers to whether the Pokémon's image is flipped when seen in the summary screen as opposed to when seen in the Pokédex or PC. This is determined by bit 7 (the most significant bit) of this field. For some Pokémon, such as Poliwag, Kingler, and Unown, this bit is set and the image is not flipped (i.e., the image is oriented the same in both places).

Storage

050Diglett.png This section is incomplete.
Please feel free to edit this section to add missing information and complete it.
Reason: Are the Ruby and Sapphire addresses only for US games? For non-US games?

The following are the RAM offsets for the first base stats entry (Bulbasaur) in each GBA game. Since a game is loaded into RAM at 0x08000000, this means that the offset in a ROM dump will only use the last six digits.

Game Address
Ruby 0x081FEC34
Sapphire 0x081FEBC4
Emerald 0x082F0D70
EmeraldEN-US 0x083203E8
FireRed 0x082111A8
FireRedEN-US 0x082547A0
LeafGreen 0x08211184
LeafGreenEN-US 0x0825477C

Fingerprint

Below is a sample of the data for the first few base stat data structures.

00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  // ?????????? (used for unknown/glitch Pokémon)
2D 31 31 2D 41 41 0C 03 2D 40 00 01 00 00 00 00 1F 14 46 03 01 07 41 00 00 03 00 00  // BULBASAUR
3C 3E 3F 3C 50 50 0C 03 2D 8D 00 05 00 00 00 00 1F 14 46 03 01 07 41 00 00 03 00 00  // IVYSAUR
50 52 53 50 64 64 0C 03 2D D0 00 06 00 00 00 00 1F 14 46 03 01 07 41 00 00 03 00 00  // VENUSAUR
27 34 2B 41 3C 32 0A 0A 2D 41 40 00 00 00 00 00 1F 14 46 03 01 0E 42 00 00 00 00 00  // CHARMANDER
3A 40 3A 50 50 41 0A 0A 2D 8E 40 01 00 00 00 00 1F 14 46 03 01 0E 42 00 00 00 00 00  // CHARMELEON
4E 54 4E 64 6D 55 0A 02 2D D1 00 03 00 00 00 00 1F 14 46 03 01 0E 42 00 00 00 00 00  // CHARIZARD
2C 30 41 2B 32 40 0B 0B 2D 42 10 00 00 00 00 00 1F 14 46 03 01 02 43 00 00 01 00 00  // SQUIRTLE
3B 3F 50 3A 41 50 0B 0B 2D 8F 10 04 00 00 00 00 1F 14 46 03 01 02 43 00 00 01 00 00  // WARTORTLE
4F 53 64 4E 55 69 0B 0B 2D D2 00 0C 00 00 00 00 1F 14 46 03 01 02 43 00 00 01 00 00  // BLASTOISE
...


Data structure in the Pokémon games
Generation I Pokémon speciesPokémonPoké MartCharacter encodingSave
Generation II Pokémon speciesPokémonTrainerCharacter encoding (Korean) • Save
Generation III Pokémon species (Pokémon evolutionPokédexType chart)
Pokémon (substructures) • MoveContestContest moveItem
Trainer TowerBattle FrontierCharacter encodingSave
Generation IV Pokémon species (Pokémon evolutionLearnsets)
PokémonSaveCharacter encoding
Generation V-present Character encoding
TCG GB and GB2 Character encoding


Project Games logo.png This data structure article is part of Project Games, a Bulbapedia project that aims to write comprehensive articles on the Pokémon games.