mirror of
https://github.com/pret/pokefirered.git
synced 2026-05-06 05:35:23 -05:00
base_stats.h
This commit is contained in:
parent
cb3722a57a
commit
b18ff9653f
13
data/data.s
13
data/data.s
|
|
@ -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
12032
src/data/pokemon/base_stats.h
Normal file
File diff suppressed because it is too large
Load Diff
|
|
@ -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}},
|
||||
};
|
||||
|
||||
|
|
|
|||
|
|
@ -413,3 +413,4 @@ const u16 *const gLevelUpLearnsets[NUM_SPECIES] =
|
|||
[SPECIES_DEOXYS] = sDeoxysLevelUpLearnset,
|
||||
[SPECIES_CHIMECHO] = sChimechoLevelUpLearnset,
|
||||
};
|
||||
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user