This commit is contained in:
jiangzhengwenjz
2019-11-24 03:50:28 +08:00
parent 972c044d71
commit 7817546781
4 changed files with 751 additions and 738 deletions
+3 -3
View File
@@ -1,4 +1,4 @@
const u16 sTutorMoves[TUTOR_MOVE_COUNT] =
static const u16 sTutorMoves[TUTOR_MOVE_COUNT] =
{
[TUTOR_MOVE_MEGA_PUNCH] = MOVE_MEGA_PUNCH,
[TUTOR_MOVE_SWORDS_DANCE] = MOVE_SWORDS_DANCE,
@@ -17,9 +17,9 @@ const u16 sTutorMoves[TUTOR_MOVE_COUNT] =
[TUTOR_MOVE_SUBSTITUTE] = MOVE_SUBSTITUTE,
};
#define TUTOR(move) (1u << (TUTOR_##move))
#define TUTOR(move) (1 << (TUTOR_##move))
const u16 sTutorLearnsets[] =
static const u16 sTutorLearnsets[] =
{
[SPECIES_NONE] = 0,