Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added B_UPDATED_MOVE_DATA checks against Acid/Crunch's descriptions #3586

Merged
merged 2 commits into from
Nov 20, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions src/data/text/move_descriptions.h
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,11 @@ static const u8 sDisableDescription[] = _(

static const u8 sAcidDescription[] = _(
"Sprays a hide-melting acid.\n"
#if B_UPDATED_MOVE_DATA >= GEN_4
"May lower Sp. Def.");
#else
"May lower Defense.");
#endif

static const u8 sEmberDescription[] = _(
"A weak fire attack that may\n"
Expand Down Expand Up @@ -986,7 +990,11 @@ static const u8 sSunnyDayDescription[] = _(

static const u8 sCrunchDescription[] = _(
"Crunches with sharp fangs.\n"
#if B_UPDATED_MOVE_DATA >= GEN_4
"May lower Defense.");
#else
"May lower Sp. Def.");
#endif

static const u8 sMirrorCoatDescription[] = _(
"Counters the foe's special\n"
Expand Down
Loading