Dump gSpeciesInfo to C

This commit is contained in:
Marcus Huderle 2026-01-24 11:02:42 -06:00
parent cb8904e6ed
commit c5b91446c8
6 changed files with 4294 additions and 1394 deletions

File diff suppressed because it is too large Load Diff

1395
data/rom_2.s Normal file

File diff suppressed because it is too large Load Diff

View File

@ -311,7 +311,7 @@ extern s16 gUnknown_086A61BC[];
extern s16 gUnknown_086A77A8[][10][2];
extern u8 gUnknown_0201B124;
extern struct PokemonSpecies gSpeciesInfo[];
extern const struct PokemonSpecies gSpeciesInfo[];
extern const struct SpriteSet * const gUnknown_086A54D8[13];
extern u8 (*gMonHatchSpriteGroupGfx[])[0x10E0];
extern u8 (*gMonHatchSpriteGroupPals[])[0x20];

View File

@ -99,7 +99,9 @@ SECTIONS
.rodata :
{
data/rom.o(.rodata)
data/rom_1.o(.rodata)
src/data.o(.rodata)
data/rom_2.o(.rodata)
}=0xFF
/* Discard everything not specifically mentioned above. */

5
src/data.c Normal file
View File

@ -0,0 +1,5 @@
#include "global.h"
#include "constants/species.h"
// 6a3700
#include "data/species.h"

2889
src/data/species.h Normal file

File diff suppressed because it is too large Load Diff