Fix move descriptions for Feint and Feint Attack (#4617)

This commit is contained in:
Rachel 2024-05-24 02:19:55 -07:00 committed by GitHub
parent ba07d2b3d4
commit c129423a69
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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,