Mind Blown has contest data (#332)

* uncomment mind blown

* more contest moves
This commit is contained in:
MandL27 2020-04-25 05:22:12 -04:00 committed by GitHub
parent ee68f0f826
commit 073218d544
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -12,7 +12,7 @@ const struct ContestMove gContestMoves[MOVES_COUNT] =
}, },
[MOVE_KARATE_CHOP] = [MOVE_KARATE_CHOP] =
{ {
.effect = CONTEST_EFFECT_AFFECTED_BY_PREV_APPEAL, .effect = CONTEST_EFFECT_AFFECTED_BY_PREV_APPEAL,
.contestCategory = CONTEST_CATEGORY_TOUGH, .contestCategory = CONTEST_CATEGORY_TOUGH,
.comboStarterId = 0, .comboStarterId = 0,
@ -5367,30 +5367,37 @@ const struct ContestMove gContestMoves[MOVES_COUNT] =
.comboMoves = {0} .comboMoves = {0}
}, },
// uncomment these after adding usum moves [MOVE_MIND_BLOWN] =
//[MOVE_MIND_BLOWN] = {
//{ .effect = CONTEST_EFFECT_USER_MORE_EASILY_STARTLED,
// .effect = CONTEST_EFFECT_USER_MORE_EASILY_STARTLED, .contestCategory = CONTEST_CATEGORY_BEAUTY,
// .contestCategory = CONTEST_CATEGORY_BEAUTY, .comboStarterId = 0,
// .comboStarterId = 0, .comboMoves = {0}
// .comboMoves = {0} },
//},
//[MOVE_PLASMA_FISTS] = [MOVE_PLASMA_FISTS] =
//{ {
// .effect = CONTEST_EFFECT_WORSEN_CONDITION_OF_PREV_MONS, .effect = CONTEST_EFFECT_WORSEN_CONDITION_OF_PREV_MONS,
// .contestCategory = CONTEST_CATEGORY_COOL, .contestCategory = CONTEST_CATEGORY_COOL,
// .comboStarterId = 0, .comboStarterId = 0,
// .comboMoves = {0} .comboMoves = {0}
//}, },
//[MOVE_PHOTON_GEYSER] = [MOVE_PHOTON_GEYSER] =
//{ {
// .effect = CONTEST_EFFECT_BETTER_IF_SAME_TYPE, .effect = CONTEST_EFFECT_BETTER_IF_SAME_TYPE,
// .contestCategory = CONTEST_CATEGORY_SMART, .contestCategory = CONTEST_CATEGORY_SMART,
// .comboStarterId = 0, .comboStarterId = 0,
// .comboMoves = {0} .comboMoves = {0}
//}, },
[MOVE_DOUBLE_IRON_BASH] =
{
.effect = CONTEST_EFFECT_REPETITION_NOT_BORING,
.contestCategory = CONTEST_CATEGORY_TOUGH,
.comboStarterId = 0,
.comboMoves = {0}
},
}; };
const struct ContestEffect gContestEffects[] = const struct ContestEffect gContestEffects[] =