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];
|
|
|
|
};
|
|
|
|
|
2018-05-11 12:44:21 +00:00
|
|
|
struct ContestEffect
|
|
|
|
{
|
|
|
|
u8 effectType;
|
|
|
|
u8 appeal;
|
|
|
|
u8 jam;
|
|
|
|
};
|
|
|
|
|
2018-05-03 12:51:52 +00:00
|
|
|
extern const struct ContestMove gContestMoves[];
|
2018-08-15 09:43:57 +00:00
|
|
|
extern const struct ContestEffect gContestEffects[];
|
2018-08-15 04:56:11 +00:00
|
|
|
extern const u8 *const gContestEffectDescriptionPointers[];
|
2019-03-08 06:56:38 +00:00
|
|
|
extern const u8 *const gContestMoveTypeTextPointers[];
|
2018-05-03 12:51:52 +00:00
|
|
|
|
2018-08-15 09:43:57 +00:00
|
|
|
bool8 AreMovesContestCombo(u16 lastMove, u16 nextMove);
|
2018-05-03 12:51:52 +00:00
|
|
|
|
|
|
|
#endif //GUARD_CONTEST_EFFECT_H
|