pokeemerald/include/contest_effect.h

23 lines
376 B
C
Raw Normal View History

2018-05-03 12:51:52 +00:00
#ifndef GUARD_CONTEST_EFFECT_H
#define GUARD_CONTEST_EFFECT_H
struct ContestMove
{
u8 effect;
u8 contestCategory:3;
u8 comboStarterId;
u8 comboMoves[4];
};
struct ContestEffect
{
u8 effectType;
u8 appeal;
u8 jam;
};
2018-05-03 12:51:52 +00:00
extern const struct ContestMove gContestMoves[];
extern struct ContestEffect gContestEffects[];
2018-05-03 12:51:52 +00:00
#endif //GUARD_CONTEST_EFFECT_H