about summary refs log tree commit diff stats
path: root/gba/source/basestats.c
diff options
context:
space:
mode:
authorKelly Rauchenberger <fefferburbia@gmail.com>2017-08-29 19:12:06 -0400
committerKelly Rauchenberger <fefferburbia@gmail.com>2017-08-29 19:12:06 -0400
commit0882d1020d75bbddc8e8fbe30aed435e8814988a (patch)
tree02738c847cfd68b40e9d6cff1aec0761b86f657a /gba/source/basestats.c
parentc9e6a144ea5500b50dce6353862da0f85fd72176 (diff)
downloadgen3uploader-0882d1020d75bbddc8e8fbe30aed435e8814988a.tar.gz
gen3uploader-0882d1020d75bbddc8e8fbe30aed435e8814988a.tar.bz2
gen3uploader-0882d1020d75bbddc8e8fbe30aed435e8814988a.zip
Added base stats for all of Deoxys's Formes
Diffstat (limited to 'gba/source/basestats.c')
-rw-r--r--gba/source/basestats.c41
1 files changed, 40 insertions, 1 deletions
diff --git a/gba/source/basestats.c b/gba/source/basestats.c index a8c335b..759e7b5 100644 --- a/gba/source/basestats.c +++ b/gba/source/basestats.c
@@ -6,6 +6,7 @@
6 * of the MIT license. See the LICENSE file for details. 6 * of the MIT license. See the LICENSE file for details.
7 */ 7 */
8#include "basestats.h" 8#include "basestats.h"
9#include "gamedata.h"
9 10
10enum { 11enum {
11 GROWTH_MEDIUM_FAST, 12 GROWTH_MEDIUM_FAST,
@@ -1655,7 +1656,7 @@ const struct SmallBaseStats gSmallBaseStats[] = {
1655 100, 100, 100, 100, 100, 100, 1656 100, 100, 100, 100, 100, 100,
1656 255, // gender 1657 255, // gender
1657 GROWTH_SLOW 1658 GROWTH_SLOW
1658 }, { // Deoxys 1659 }, { // Deoxys Normal Forme
1659 50, 150, 50, 150, 150, 50, 1660 50, 150, 50, 150, 150, 50,
1660 255, // gender 1661 255, // gender
1661 GROWTH_SLOW 1662 GROWTH_SLOW
@@ -1665,3 +1666,41 @@ const struct SmallBaseStats gSmallBaseStats[] = {
1665 GROWTH_FAST 1666 GROWTH_FAST
1666 } 1667 }
1667}; 1668};
1669
1670const struct SmallBaseStats gDeoxysBaseStats[] = {
1671 { // Attack Forme
1672 50, 180, 20, 180, 20, 150,
1673 255, // gender
1674 GROWTH_SLOW
1675 }, { // Defense Forme
1676 50, 70, 160, 70, 160, 90,
1677 255, // gender
1678 GROWTH_SLOW
1679 }, { // Speed Forme
1680 50, 95, 90, 95, 90, 180,
1681 255, // gender
1682 GROWTH_SLOW
1683 }
1684};
1685
1686const struct SmallBaseStats* BaseStatsForSpecies(int species)
1687{
1688 if ((species == DEOXYS_SPECIES_INDEX) && (!GAME_RS))
1689 {
1690 if (GAME_FR)
1691 {
1692 return &gDeoxysBaseStats[0];
1693 } else if (GAME_LG)
1694 {
1695 return &gDeoxysBaseStats[1];
1696 } else if (GAME_EM)
1697 {
1698 return &gDeoxysBaseStats[2];
1699 } else {
1700 // Impossible.
1701 return 0;
1702 }
1703 } else {
1704 return &gSmallBaseStats[species];
1705 }
1706}