Skip to content

Commit

Permalink
Make Snow Warning description respect config (#5018)
Browse files Browse the repository at this point in the history
* Make Snow Warning description respect config

* Update src/data/abilities.h

---------

Co-authored-by: Eduardo Quezada <[email protected]>
  • Loading branch information
kittenchilly and AsparagusEduardo authored Jul 22, 2024
1 parent aac6ebd commit 0bcd6a5
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/data/abilities.h
Original file line number Diff line number Diff line change
Expand Up @@ -881,7 +881,11 @@ const struct Ability gAbilitiesInfo[ABILITIES_COUNT] =
[ABILITY_SNOW_WARNING] =
{
.name = _("Snow Warning"),
.description = COMPOUND_STRING("Summons a Hailstorm."),
#if B_SNOW_WARNING >= GEN_9
.description = COMPOUND_STRING("Summons snow in battle."),
#else
.description = COMPOUND_STRING("Summons hail in battle."),
#endif
.aiRating = 8,
},

Expand Down

0 comments on commit 0bcd6a5

Please sign in to comment.