mirror of https://github.com/pret/pokeemerald.git
Dump trainer hill trainers
This commit is contained in:
parent
6857b73ee3
commit
f84b22fca4
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -249,15 +249,3 @@ gUnknown_0862608C:: @ 862608C
|
|||
|
||||
gUnknown_0862609C:: @ 862609C
|
||||
.incbin "data/unknown_jp_62609C.bin"
|
||||
|
||||
gUnknown_08626814:: @ 8626814
|
||||
.incbin "data/pokenav/unk_struct_1.bin"
|
||||
|
||||
gUnknown_086276FC:: @ 86276FC
|
||||
.incbin "data/pokenav/unk_struct_2.bin"
|
||||
|
||||
gUnknown_086285E4:: @ 86285E4
|
||||
.incbin "data/pokenav/unk_struct_3.bin"
|
||||
|
||||
gUnknown_086294CC:: @ 86294CC
|
||||
.incbin "data/pokenav/unk_struct_4.bin"
|
||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -24,7 +24,9 @@
|
|||
#include "constants/event_object_movement_constants.h"
|
||||
#include "constants/event_objects.h"
|
||||
#include "constants/items.h"
|
||||
#include "constants/moves.h"
|
||||
#include "constants/maps.h"
|
||||
#include "constants/species.h"
|
||||
#include "constants/trainers.h"
|
||||
|
||||
extern bool32 sub_81D3B34(void);
|
||||
|
@ -118,11 +120,7 @@ static void sub_81D642C(struct Pokemon *mon, u8 level);
|
|||
static u16 sub_81D6640(void);
|
||||
|
||||
// const data
|
||||
// I will decompile these soon, no worries :)
|
||||
extern const struct TrHillTag gUnknown_08626814;
|
||||
extern const struct TrHillTag gUnknown_086276FC;
|
||||
extern const struct TrHillTag gUnknown_086285E4;
|
||||
extern const struct TrHillTag gUnknown_086294CC;
|
||||
#include "data/battle_frontier/trainer_hill.h"
|
||||
|
||||
struct
|
||||
{
|
||||
|
@ -246,10 +244,10 @@ static const u8 sRecordWinColors[] = {0, 2, 3};
|
|||
|
||||
static const struct TrHillTag *const sDataPerTag[] =
|
||||
{
|
||||
&gUnknown_08626814,
|
||||
&gUnknown_086276FC,
|
||||
&gUnknown_086285E4,
|
||||
&gUnknown_086294CC,
|
||||
&sDataTagNormal,
|
||||
&sDataTagVariety,
|
||||
&sDataTagUnique,
|
||||
&sDataTagExpert,
|
||||
};
|
||||
|
||||
// Unused.
|
||||
|
|
Loading…
Reference in New Issue