pokeheartgold/include/field/headbutt.h
2024-03-08 16:12:48 -05:00

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