mirror of
https://github.com/pret/pokeheartgold.git
synced 2026-05-23 04:36:22 -05:00
20 lines
438 B
C
20 lines
438 B
C
#ifndef POKEHEARTGOLD_FIELD_HEADBUTT_H
|
|
#define POKEHEARTGOLD_FIELD_HEADBUTT_H
|
|
|
|
typedef struct HeadbuttSlot {
|
|
u16 species;
|
|
u8 minLevel;
|
|
u8 maxLevel;
|
|
} HeadbuttSlot;
|
|
|
|
typedef struct HeadbuttEncounterData {
|
|
u16 numRegularTrees;
|
|
u16 numSecretTrees;
|
|
HeadbuttSlot common[6];
|
|
HeadbuttSlot rare[6];
|
|
HeadbuttSlot secret[6];
|
|
s16 treeCoords[][2];
|
|
} HeadbuttEncounterData;
|
|
|
|
#endif //POKEHEARTGOLD_FIELD_HEADBUTT_H
|