summaryrefslogtreecommitdiff
path: root/files/poketool/personal/wotbl.json.txt
blob: d68b1e395a75939f485bd14b94ecc38cf036a9b8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{{ doNotModifyHeader }}

#include "global.h"
#include "constants/moves.h"

u32 __size[] = {
##for mon in wotbl
    ({{ length(mon.moves) }} * 2 + 5) & ~3,
##endfor
};

const u16 moveset[] = {
##for mon in wotbl
	// {{ mon.species }}
##for move in mon.moves
    MOVE_{{ move.move }} | ({{ move.level }} << 9),
##endfor
    0xFFFF,
	{% if even(length(mon.moves)) %}0x0000,{% endif %}
##endfor
};