blob: 0bec4a7ed139141b5f17c8aae150e1351bc664c1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#include "global.h"
#include "constants/species.h"
const u16 gPartners[10] =
{
SPECIES_CHARMANDER,
SPECIES_BULBASAUR,
SPECIES_SQUIRTLE,
SPECIES_PIKACHU,
SPECIES_CHIKORITA,
SPECIES_TOTODILE,
SPECIES_CYNDAQUIL,
SPECIES_TORCHIC,
SPECIES_TREECKO,
SPECIES_MUDKIP
};
|