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:
parent
aac6ebd3d7
commit
0bcd6a5435
1 changed files with 5 additions and 1 deletions
|
@ -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,
|
||||
},
|
||||
|
||||
|
|
Loading…
Reference in a new issue