contest effect review changes

This commit is contained in:
DizzyEggg 2018-08-16 22:55:36 +02:00
parent 0bfe894566
commit 5dd1afd383
2 changed files with 20 additions and 9 deletions

View File

@ -440,10 +440,17 @@ static void ContestEffect_MakeFollowingMonsNervous(void)
MakeContestantNervous(contestantIds[i]);
SetContestantEffectStringID(contestantIds[i], CONTEST_STRING_NERVOUS);
numUnnerved++;
} else
}
else
{
contestantUnnerved = TRUE;
} else
}
}
else
{
contestantUnnerved = TRUE;
}
if (contestantUnnerved)
{
contestantUnnerved = FALSE;
@ -542,8 +549,11 @@ static void ContestEffect_AppealAsGoodAsPrevOnes(void)
}
if (appealSum < 0)
appealSum = 0;
if (shared192D0.turnOrder[shared192D0.contestant] == 0 || appealSum == 0)
{
SetContestantEffectStringID(shared192D0.contestant, CONTEST_STRING_APPEAL_NOT_WELL);
}
else
{
sContestantStatus[shared192D0.contestant].appeal2 += appealSum / 2;
@ -567,7 +577,9 @@ static void ContestEffect_AppealAsGoodAsPrevOne(void)
}
}
if (shared192D0.turnOrder[shared192D0.contestant] == 0 || appeal <= 0)
{
SetContestantEffectStringID(shared192D0.contestant, CONTEST_STRING_APPEAL_NOT_WELL2);
}
else
{
sContestantStatus[shared192D0.contestant].appeal2 += appeal;
@ -716,7 +728,9 @@ static void ContestEffect_ImproveConditionPreventNervousness(void)
SetContestantEffectStringID(shared192D0.contestant, CONTEST_STRING_CONDITION_ROSE);
}
else
{
SetContestantEffectStringID(shared192D0.contestant, CONTEST_STRING_NO_CONDITION_IMPROVE);
}
}
// The appeal works well if the users condition is good.
@ -988,8 +1002,10 @@ static bool8 CanUnnerveContestant(u8 i)
{
return TRUE;
}
return FALSE;
else
{
return FALSE;
}
}
static bool8 WasAtLeastOneOpponentJammed(void)

View File

@ -1,6 +1,3 @@
#ifndef POKEEMERALD_CONTEST_MOVES_H
#define POKEEMERALD_CONTEST_MOVES_H
const struct ContestMove gContestMoves[MOVES_COUNT] =
{
[MOVE_NONE] = {0},
@ -3009,5 +3006,3 @@ void (*const gContestEffectFuncs[])(void) =
ContestEffect_BetterWhenAudienceExcited,
ContestEffect_DontExciteAudience,
};
#endif // POKEEMERALD_CONTEST_MOVES_H