Make Snow Warning description respect config (#5018)

* Make Snow Warning description respect config

* Update src/data/abilities.h

---------

Co-authored-by: Eduardo Quezada <eduardo602002@gmail.com>
This commit is contained in:
kittenchilly 2024-07-22 06:39:32 -05:00 committed by GitHub
parent aac6ebd3d7
commit 0bcd6a5435
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

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