blob: 8adb031e06563b66004b9a08b0e5ecce19577369 (
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
|
/*
* 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>
struct SmallBaseStats {
u8 baseHP;
u8 baseAttack;
u8 baseDefense;
u8 baseSpeed;
u8 baseSpAttack;
u8 baseSpDefense;
u8 genderRatio;
u8 growthRate;
};
extern const struct SmallBaseStats gSmallBaseStats[];
#endif
|