2018-05-03 13:51:52 +01:00
|
|
|
#ifndef GUARD_CONTEST_EFFECT_H
|
|
|
|
#define GUARD_CONTEST_EFFECT_H
|
2020-04-13 14:05:10 +01:00
|
|
|
#define MAX_COMBO_MOVES 5
|
2018-05-03 13:51:52 +01:00
|
|
|
|
2018-05-11 13:44:21 +01:00
|
|
|
struct ContestEffect
|
|
|
|
{
|
|
|
|
u8 effectType;
|
|
|
|
u8 appeal;
|
|
|
|
u8 jam;
|
|
|
|
};
|
|
|
|
|
2018-08-15 10:43:57 +01:00
|
|
|
extern const struct ContestEffect gContestEffects[];
|
2018-08-15 05:56:11 +01:00
|
|
|
extern const u8 *const gContestEffectDescriptionPointers[];
|
2019-03-08 06:56:38 +00:00
|
|
|
extern const u8 *const gContestMoveTypeTextPointers[];
|
2018-05-03 13:51:52 +01:00
|
|
|
|
2018-08-15 10:43:57 +01:00
|
|
|
bool8 AreMovesContestCombo(u16 lastMove, u16 nextMove);
|
2018-05-03 13:51:52 +01:00
|
|
|
|
|
|
|
#endif //GUARD_CONTEST_EFFECT_H
|