blob: bd0af8e4d45a59a7fa96fa8f69041b3349aa3d98 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
{{ doNotModifyHeader }}
#include "global.h"
#include "pokemon.h"
#include "constants/pokemon.h"
#include "constants/species.h"
#include "constants/moves.h"
#include "constants/items.h"
u32 __size = 44;
const u16 data[][22] = {
## for evo in evos
// {{ evo.species }}
{
## for method in evo.evos
{{ method.method }}, {% if existsIn(method, "param") %}{{ method.param }}{% else %}0{% endif %}, SPECIES_{{ method.target }},
## endfor
EVO_NONE
},
## endfor
};
|