Skip to content

Commit

Permalink
Updated Zacian/Zamazenta stats to Gen 9 (rh-hideout#3421)
Browse files Browse the repository at this point in the history
  • Loading branch information
AsparagusEduardo authored and katykat5099 committed Oct 15, 2023
1 parent 37873bc commit 49de09f
Showing 1 changed file with 8 additions and 16 deletions.
24 changes: 8 additions & 16 deletions src/data/pokemon/species_info.h
Original file line number Diff line number Diff line change
Expand Up @@ -12036,18 +12036,10 @@ const struct SpeciesInfo gSpeciesInfo[] =
{
.baseHP = 120,
.baseAttack = 70,
#if P_UPDATED_STATS >= GEN_9
.baseDefense = 110,
#else
.baseDefense = 120,
#endif
.baseDefense = P_UPDATED_STATS >= GEN_9 ? 110 : 120,
.baseSpeed = 85,
.baseSpAttack = 75,
#if P_UPDATED_STATS >= GEN_9
.baseSpDefense = 120,
#else
.baseSpDefense = 130,
#endif
.baseSpDefense = P_UPDATED_STATS >= GEN_9 ? 120 : 130,
.types = { TYPE_PSYCHIC, TYPE_PSYCHIC},
.catchRate = 3,
.expYield = 270,
Expand Down Expand Up @@ -20661,7 +20653,7 @@ const struct SpeciesInfo gSpeciesInfo[] =
[SPECIES_ZACIAN] =
{
.baseHP = 92,
.baseAttack = 130,
.baseAttack = P_UPDATED_STATS >= GEN_9 ? 120 : 130,
.baseDefense = 115,
.baseSpeed = 138,
.baseSpAttack = 80,
Expand All @@ -20684,7 +20676,7 @@ const struct SpeciesInfo gSpeciesInfo[] =
[SPECIES_ZAMAZENTA] =
{
.baseHP = 92,
.baseAttack = 130,
.baseAttack = P_UPDATED_STATS >= GEN_9 ? 120 : 130,
.baseDefense = 115,
.baseSpeed = 138,
.baseSpAttack = 80,
Expand Down Expand Up @@ -24594,7 +24586,7 @@ const struct SpeciesInfo gSpeciesInfo[] =
[SPECIES_ZACIAN_CROWNED_SWORD] =
{
.baseHP = 92,
.baseAttack = 170,
.baseAttack = P_UPDATED_STATS >= GEN_9 ? 150 : 170,
.baseDefense = 115,
.baseSpeed = 148,
.baseSpAttack = 80,
Expand All @@ -24617,11 +24609,11 @@ const struct SpeciesInfo gSpeciesInfo[] =
[SPECIES_ZAMAZENTA_CROWNED_SHIELD] =
{
.baseHP = 92,
.baseAttack = 130,
.baseDefense = 145,
.baseAttack = P_UPDATED_STATS >= GEN_9 ? 120 : 130,
.baseDefense = P_UPDATED_STATS >= GEN_9 ? 140 : 145,
.baseSpeed = 128,
.baseSpAttack = 80,
.baseSpDefense = 145,
.baseSpDefense = P_UPDATED_STATS >= GEN_9 ? 140 : 145,
.types = { TYPE_FIGHTING, TYPE_STEEL},
.catchRate = 10,
.expYield = 360,
Expand Down

0 comments on commit 49de09f

Please sign in to comment.