Moved Gen 1 dex entries to base stats
This commit is contained in:
parent
eff21004f8
commit
713b646a46
5 changed files with 2499 additions and 3076 deletions
|
@ -419,6 +419,8 @@ extern const struct SpriteTemplate gBattlerSpriteTemplates[];
|
||||||
extern const s8 gNatureStatTable[][5];
|
extern const s8 gNatureStatTable[][5];
|
||||||
extern const u32 sExpCandyExperienceTable[];
|
extern const u32 sExpCandyExperienceTable[];
|
||||||
extern const u16 gBaseFormSpeciesIdTable[NATIONAL_DEX_COUNT + 1];
|
extern const u16 gBaseFormSpeciesIdTable[NATIONAL_DEX_COUNT + 1];
|
||||||
|
extern const struct PokedexEntry gPokedexEntries[];
|
||||||
|
extern const struct PokedexEntryForms gPokedexEntriesForms[];
|
||||||
|
|
||||||
void ZeroBoxMonData(struct BoxPokemon *boxMon);
|
void ZeroBoxMonData(struct BoxPokemon *boxMon);
|
||||||
void ZeroMonData(struct Pokemon *mon);
|
void ZeroMonData(struct Pokemon *mon);
|
||||||
|
|
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
|
@ -16,6 +16,7 @@
|
||||||
#include "pokedex.h"
|
#include "pokedex.h"
|
||||||
#include "pokedex_area_screen.h"
|
#include "pokedex_area_screen.h"
|
||||||
#include "pokedex_cry_screen.h"
|
#include "pokedex_cry_screen.h"
|
||||||
|
#include "pokemon.h"
|
||||||
#include "scanline_effect.h"
|
#include "scanline_effect.h"
|
||||||
#include "sound.h"
|
#include "sound.h"
|
||||||
#include "sprite.h"
|
#include "sprite.h"
|
||||||
|
@ -872,9 +873,6 @@ static const u8 sText_TenDashes[] = _("----------");
|
||||||
|
|
||||||
ALIGNED(4) static const u8 sExpandedPlaceholder_PokedexDescription[] = _("");
|
ALIGNED(4) static const u8 sExpandedPlaceholder_PokedexDescription[] = _("");
|
||||||
|
|
||||||
#include "data/pokemon/pokedex_text.h"
|
|
||||||
#include "data/pokemon/pokedex_entries.h"
|
|
||||||
|
|
||||||
static const u16 sSizeScreenSilhouette_Pal[] = INCBIN_U16("graphics/pokedex/size_silhouette.gbapal");
|
static const u16 sSizeScreenSilhouette_Pal[] = INCBIN_U16("graphics/pokedex/size_silhouette.gbapal");
|
||||||
|
|
||||||
static const struct BgTemplate sInfoScreen_BgTemplate[] =
|
static const struct BgTemplate sInfoScreen_BgTemplate[] =
|
||||||
|
|
|
@ -1898,6 +1898,8 @@ const s8 gNatureStatTable[NUM_NATURES][NUM_NATURE_STATS] =
|
||||||
|
|
||||||
#include "data/pokemon/trainer_class_lookups.h"
|
#include "data/pokemon/trainer_class_lookups.h"
|
||||||
#include "data/pokemon/experience_tables.h"
|
#include "data/pokemon/experience_tables.h"
|
||||||
|
#include "data/pokemon/pokedex_text.h"
|
||||||
|
#include "data/pokemon/pokedex_entries.h"
|
||||||
#include "data/pokemon/base_stats.h"
|
#include "data/pokemon/base_stats.h"
|
||||||
#include "data/pokemon/level_up_learnsets.h"
|
#include "data/pokemon/level_up_learnsets.h"
|
||||||
#include "data/pokemon/teachable_learnsets.h"
|
#include "data/pokemon/teachable_learnsets.h"
|
||||||
|
|
Loading…
Reference in a new issue