summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAsparagusEduardo <eduardo602002@gmail.com>2020-05-16 18:08:56 -0400
committerAsparagusEduardo <eduardo602002@gmail.com>2020-05-16 18:08:56 -0400
commit179d84dcd730d3773c93b8501f49a149115e12c6 (patch)
tree970be6150844eed06993f45195a9a5d0e32fe072 /src
parent44f348a8e1334e05b16891a1a019743b723f60da (diff)
Using ability constants for OLD_UNOWN stats
Diffstat (limited to 'src')
-rw-r--r--src/data/pokemon/base_stats.h60
1 files changed, 30 insertions, 30 deletions
diff --git a/src/data/pokemon/base_stats.h b/src/data/pokemon/base_stats.h
index 4dedcfdc0..d851dfbe1 100644
--- a/src/data/pokemon/base_stats.h
+++ b/src/data/pokemon/base_stats.h
@@ -2,36 +2,36 @@
// 255 (MON_GENDERLESS) is reserved for genderless Pokémon.
#define PERCENT_FEMALE(percent) min(254, ((percent * 255) / 100))
-#define OLD_UNOWN_BASE_STATS \
- { \
- .baseHP = 50, \
- .baseAttack = 150, \
- .baseDefense = 50, \
- .baseSpeed = 150, \
- .baseSpAttack = 150, \
- .baseSpDefense = 50, \
- .type1 = TYPE_NORMAL, \
- .type2 = TYPE_NORMAL, \
- .catchRate = 3, \
- .expYield = 1, \
- .evYield_HP = 2, \
- .evYield_Attack = 2, \
- .evYield_Defense = 2, \
- .evYield_Speed = 2, \
- .evYield_SpAttack = 2, \
- .evYield_SpDefense = 2, \
- .item1 = ITEM_NONE, \
- .item2 = ITEM_NONE, \
- .genderRatio = MON_GENDERLESS, \
- .eggCycles = 120, \
- .friendship = 0, \
- .growthRate = GROWTH_MEDIUM_FAST, \
- .eggGroup1 = EGG_GROUP_UNDISCOVERED,\
- .eggGroup2 = EGG_GROUP_UNDISCOVERED,\
- .abilities = {0, 0}, \
- .safariZoneFleeRate = 0, \
- .bodyColor = BODY_COLOR_BLACK, \
- .noFlip = FALSE, \
+#define OLD_UNOWN_BASE_STATS \
+ { \
+ .baseHP = 50, \
+ .baseAttack = 150, \
+ .baseDefense = 50, \
+ .baseSpeed = 150, \
+ .baseSpAttack = 150, \
+ .baseSpDefense = 50, \
+ .type1 = TYPE_NORMAL, \
+ .type2 = TYPE_NORMAL, \
+ .catchRate = 3, \
+ .expYield = 1, \
+ .evYield_HP = 2, \
+ .evYield_Attack = 2, \
+ .evYield_Defense = 2, \
+ .evYield_Speed = 2, \
+ .evYield_SpAttack = 2, \
+ .evYield_SpDefense = 2, \
+ .item1 = ITEM_NONE, \
+ .item2 = ITEM_NONE, \
+ .genderRatio = MON_GENDERLESS, \
+ .eggCycles = 120, \
+ .friendship = 0, \
+ .growthRate = GROWTH_MEDIUM_FAST, \
+ .eggGroup1 = EGG_GROUP_UNDISCOVERED, \
+ .eggGroup2 = EGG_GROUP_UNDISCOVERED, \
+ .abilities = {ABILITY_NONE, ABILITY_NONE}, \
+ .safariZoneFleeRate = 0, \
+ .bodyColor = BODY_COLOR_BLACK, \
+ .noFlip = FALSE, \
}
const struct BaseStats gBaseStats[] =