Changed instances of "But it failed" to "It doesn't affect X"

This commit is contained in:
Eduardo Quezada 2025-08-11 13:33:56 -04:00
parent db0ca2ce49
commit d2acc2d7d6
5 changed files with 7 additions and 7 deletions

View File

@ -3114,7 +3114,7 @@ BattleScript_AlreadyPoisoned::
BattleScript_ImmunityProtected::
call BattleScript_AbilityPopUp
goto BattleScript_ButItFailed
goto BattleScript_DoesntAffectTargetAtkString
BattleScript_EffectAuroraVeil::
attackcanceler

View File

@ -27,7 +27,7 @@ SINGLE_BATTLE_TEST("Immunity prevents Toxic bad poison")
} SCENE {
MESSAGE("Wobbuffet used Toxic!");
ABILITY_POPUP(opponent, ABILITY_IMMUNITY);
MESSAGE("But it failed!");
MESSAGE("It doesn't affect the opposing Snorlax…");
NOT STATUS_ICON(opponent, poison: TRUE);
}
}

View File

@ -29,7 +29,7 @@ SINGLE_BATTLE_TEST("Limber prevents paralysis from Thunder Wave")
} WHEN {
TURN { MOVE(opponent, MOVE_THUNDER_WAVE); }
} SCENE {
MESSAGE("But it failed!");
MESSAGE("It doesn't affect Persian…");
NONE_OF {
ANIMATION(ANIM_TYPE_STATUS, B_ANIM_STATUS_PRZ, player);
STATUS_ICON(player, paralysis: TRUE);

View File

@ -80,7 +80,7 @@ SINGLE_BATTLE_TEST("Pastel Veil prevents Toxic bad poison")
} SCENE {
MESSAGE("Wobbuffet used Toxic!");
ABILITY_POPUP(opponent, ABILITY_PASTEL_VEIL);
MESSAGE("But it failed!");
MESSAGE("It doesn't affect the opposing Ponyta…");
NOT STATUS_ICON(opponent, badPoison: TRUE);
}
}
@ -97,7 +97,7 @@ DOUBLE_BATTLE_TEST("Pastel Veil prevents Toxic bad poison on partner - right tar
} SCENE {
MESSAGE("Wobbuffet used Toxic!");
ABILITY_POPUP(opponentLeft, ABILITY_PASTEL_VEIL);
MESSAGE("But it failed!");
MESSAGE("It doesn't affect the opposing Wynaut…");
NOT STATUS_ICON(opponentRight, badPoison: TRUE);
}
}
@ -114,7 +114,7 @@ DOUBLE_BATTLE_TEST("Pastel Veil prevents Toxic bad poison on partner - left targ
} SCENE {
MESSAGE("Wobbuffet used Toxic!");
ABILITY_POPUP(opponentRight, ABILITY_PASTEL_VEIL);
MESSAGE("But it failed!");
MESSAGE("It doesn't affect the opposing Wynaut…");
NOT STATUS_ICON(opponentLeft, badPoison: TRUE);
}
}

View File

@ -12,7 +12,7 @@ SINGLE_BATTLE_TEST("Water Bubble prevents burn from Will-o-Wisp")
TURN { MOVE(opponent, MOVE_WILL_O_WISP); }
} SCENE {
ABILITY_POPUP(player, ABILITY_WATER_BUBBLE);
MESSAGE("But it failed!");
MESSAGE("It doesn't affect Dewpider…");
NONE_OF {
ANIMATION(ANIM_TYPE_STATUS, B_ANIM_STATUS_BRN, player);
STATUS_ICON(player, burn: TRUE);