diff options
Diffstat (limited to 'gba/source/basestats.h')
-rw-r--r-- | gba/source/basestats.h | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/gba/source/basestats.h b/gba/source/basestats.h new file mode 100644 index 0000000..8adb031 --- /dev/null +++ b/gba/source/basestats.h | |||
@@ -0,0 +1,26 @@ | |||
1 | /* | ||
2 | * Copyright (C) 2017 Scott Norton | ||
3 | * Copyright (C) 2017 hatkirby | ||
4 | * | ||
5 | * This software may be modified and distributed under the terms | ||
6 | * of the MIT license. See the LICENSE file for details. | ||
7 | */ | ||
8 | #ifndef BASESTATS_H | ||
9 | #define BASESTATS_H | ||
10 | |||
11 | #include <gba.h> | ||
12 | |||
13 | struct SmallBaseStats { | ||
14 | u8 baseHP; | ||
15 | u8 baseAttack; | ||
16 | u8 baseDefense; | ||
17 | u8 baseSpeed; | ||
18 | u8 baseSpAttack; | ||
19 | u8 baseSpDefense; | ||
20 | u8 genderRatio; | ||
21 | u8 growthRate; | ||
22 | }; | ||
23 | |||
24 | extern const struct SmallBaseStats gSmallBaseStats[]; | ||
25 | |||
26 | #endif | ||