From c129423a69da51d1e112a400ac3fcf9f83ed0807 Mon Sep 17 00:00:00 2001 From: Rachel Date: Fri, 24 May 2024 02:19:55 -0700 Subject: [PATCH] Fix move descriptions for Feint and Feint Attack (#4617) --- src/data/moves_info.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/data/moves_info.h b/src/data/moves_info.h index 36bd149ece..8d54839f25 100644 --- a/src/data/moves_info.h +++ b/src/data/moves_info.h @@ -4530,7 +4530,9 @@ const struct MoveInfo gMovesInfo[MOVES_COUNT_DYNAMAX] = [MOVE_FEINT_ATTACK] = { .name = COMPOUND_STRING("Feint Attack"), - .description = sFeintDescription, + .description = COMPOUND_STRING( + "Draws the foe close, then\n" + "strikes without fail."), .effect = EFFECT_HIT, .power = 60, .type = TYPE_DARK, @@ -8808,9 +8810,7 @@ const struct MoveInfo gMovesInfo[MOVES_COUNT_DYNAMAX] = [MOVE_FEINT] = { .name = COMPOUND_STRING("Feint"), - .description = COMPOUND_STRING( - "An attack that hits foes\n" - "using moves like Protect."), + .description = sFeintDescription, .effect = EFFECT_HIT, .power = B_UPDATED_MOVE_DATA >= GEN_5 ? 30 : 50, .type = TYPE_NORMAL,