Skip to content

Commit

Permalink
Update test/battle/move_effect/wake_up_slap.c
Browse files Browse the repository at this point in the history
Co-authored-by: Alex <93446519+AlexOn1ine@users.noreply.github.com>
  • Loading branch information
hedara90 and AlexOn1ine authored May 13, 2024
1 parent d6722a8 commit 194c755
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions test/battle/move_effect/wake_up_slap.c
Original file line number Diff line number Diff line change
Expand Up @@ -20,18 +20,15 @@ SINGLE_BATTLE_TEST("Wake-Up Slap does not cure paralyzed pokemons behind substit
TURN { MOVE(opponent, MOVE_CELEBRATE); MOVE(player, MOVE_WAKE_UP_SLAP); }
} SCENE {
ANIMATION(ANIM_TYPE_MOVE, MOVE_WAKE_UP_SLAP, player);
if (ability == ABILITY_INNER_FOCUS)
{
if (ability == ABILITY_INNER_FOCUS) {
MESSAGE("The SUBSTITUTE took damage for Foe Seismitoad!");
NONE_OF
{
MESSAGE("Foe Seismitoad's SUBSTITUTE faded!"); // Smelling Salts does 86 damage, the sub has 122 HP, if hitting a sub it shouldn't get boosted damage.
MESSAGE("Foe Seismitoad woke up!");
STATUS_ICON(opponent, none: TRUE);
}
}
else
{
} else {
MESSAGE("Foe Seismitoad woke up!");
STATUS_ICON(opponent, none: TRUE);
}
Expand Down

0 comments on commit 194c755

Please sign in to comment.