From 3ba4e3c0c73197e807e4ac38b8ef5c1a6d16cea5 Mon Sep 17 00:00:00 2001 From: ghoulslash <41651341+ghoulslash@users.noreply.github.com> Date: Thu, 6 Feb 2025 14:17:57 -0500 Subject: [PATCH] Sheer Force Test Fixes (#6198) Co-authored-by: ghoulslash --- test/battle/ability/sheer_force.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/battle/ability/sheer_force.c b/test/battle/ability/sheer_force.c index e06e56c2c5..bd8d57a168 100644 --- a/test/battle/ability/sheer_force.c +++ b/test/battle/ability/sheer_force.c @@ -33,7 +33,7 @@ SINGLE_BATTLE_TEST("Sheer Force doesn't boost Eruption", s16 damage) PLAYER(SPECIES_TAUROS) { Ability(ability); } OPPONENT(SPECIES_WOBBUFFET); } WHEN { - TURN { MOVE(player, MOVE_PRESENT); } + TURN { MOVE(player, MOVE_ERUPTION); } } SCENE { HP_BAR(opponent, captureDamage: &results[i].damage); } FINALLY { @@ -50,7 +50,7 @@ SINGLE_BATTLE_TEST("Sheer Force doesn't boost Water Spout", s16 damage) PLAYER(SPECIES_TAUROS) { Ability(ability); } OPPONENT(SPECIES_WOBBUFFET); } WHEN { - TURN { MOVE(player, MOVE_PRESENT); } + TURN { MOVE(player, MOVE_WATER_SPOUT); } } SCENE { HP_BAR(opponent, captureDamage: &results[i].damage); } FINALLY { @@ -347,7 +347,7 @@ SINGLE_BATTLE_TEST("Sheer Force doesn't boost Comeuppance", s16 damage) EXPECT_NE(results[0].damage, 0); } } -SINGLE_BATTLE_TEST("Sheer Force doesn't boost Comeuppance", s16 damage) +SINGLE_BATTLE_TEST("Sheer Force doesn't boost Payback", s16 damage) { u16 ability = 0; PARAMETRIZE { ability = ABILITY_SHEER_FORCE; }