blob: 9d75eada6f7e97dd76a67d9d683515ca0a223a70 (
plain)
| 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
 | #ifndef GUARD_BERRY_H
#define GUARD_BERRY_H
struct Berry
{
    u8 name[7];
    u8 firmness;
    u16 size;
    u8 maxYield;
    u8 minYield;
    u8 *description1;
    u8 *description2;
    u8 stageDuration;
    u8 spicy;
    u8 dry;
    u8 sweet;
    u8 bitter;
    u8 sour;
    u8 smoothness;
};
struct EnigmaBerry
{
    u8 name[7];
    u8 holdEffect;
    u8 unknown[18];
    u8 holdEffectParam;
};
#endif // GUARD_BERRY_H
 |