blob: 97d5fb7910818b506bb9722760595ecff68b9d35 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
/*
* Copyright (C) 2017 Scott Norton
* Copyright (C) 2017 hatkirby
*
* This software may be modified and distributed under the terms
* of the MIT license. See the LICENSE file for details.
*/
#ifndef BASESTATS_H
#define BASESTATS_H
#include <gba.h>
#define UNOWN_SPECIES_INDEX 201
#define SHEDINJA_SPECIES_INDEX 303
#define DEOXYS_SPECIES_INDEX 410
struct SmallBaseStats {
u8 baseHP;
u8 baseAttack;
u8 baseDefense;
u8 baseSpeed;
u8 baseSpAttack;
u8 baseSpDefense;
u8 genderRatio;
u8 growthRate;
};
const struct SmallBaseStats* BaseStatsForSpecies(int species);
#endif
|