base_stats.h

This commit is contained in:
jiangzhengwenjz 2019-07-15 08:29:41 +08:00
parent cb3722a57a
commit b18ff9653f
5 changed files with 12037 additions and 11 deletions

View File

@ -541,17 +541,8 @@ gUnknown_82539D4:: @ 82539D4
gExperienceTables:: @ 8253AE4
.incbin "baserom.gba", 0x253AE4, 0xCA0
gBaseStats:: @ 8254784
.incbin "baserom.gba", 0x254784, 0x2D10
@gUnknown_8257494:: @ 8257494
@ .incbin "baserom.gba", 0x257494, 0x22C0
@gEvolutionTable:: @ 8259754
@ .incbin "baserom.gba", 0x259754, 0x4060
@gLevelUpLearnsets:: @ 825D7B4
@ .incbin "baserom.gba", 0x25D7B4, 0x670
@gBaseStats:: @ 8254784
@ .incbin "baserom.gba", 0x254784, 0x2D10
.section .rodata.825EF0C

12032
src/data/pokemon/base_stats.h Normal file

File diff suppressed because it is too large Load Diff

View File

@ -185,3 +185,4 @@ const struct Evolution gEvolutionTable[NUM_SPECIES][EVOS_PER_MON] =
[SPECIES_BELDUM] = {{EVO_LEVEL, 20, SPECIES_METANG}},
[SPECIES_METANG] = {{EVO_LEVEL, 45, SPECIES_METAGROSS}},
};

View File

@ -413,3 +413,4 @@ const u16 *const gLevelUpLearnsets[NUM_SPECIES] =
[SPECIES_DEOXYS] = sDeoxysLevelUpLearnset,
[SPECIES_CHIMECHO] = sChimechoLevelUpLearnset,
};

View File

@ -80,6 +80,7 @@ static u16 GiveMoveToBoxMon(struct BoxPokemon *boxMon, u16 move);
static u8 GetLevelFromMonExp(struct Pokemon *mon);
static u16 CalculateBoxMonChecksum(struct BoxPokemon *boxMon);
#include "data/pokemon/base_stats.h"
#include "data/pokemon/level_up_learnsets.h"
#include "data/pokemon/evolution.h"
#include "data/pokemon/level_up_learnset_pointers.h"