-
Notifications
You must be signed in to change notification settings - Fork 0
/
example_data.py
73 lines (70 loc) · 2.46 KB
/
example_data.py
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
#8x8 (Heart)
t8_8 = {
'name': 'Heart',
'data': [
0x6C,0x6C,0xFE,0x92,0xD6,0xAA,0xC6,0xBA,
0x6C,0x54,0x38,0x28,0x10,0x10,0x00,0x00
]
}
#8x16 (Sword)
t8_16 = {
'name': 'Sword',
'data': [
0x18,0x18,0x2C,0x24,0x2C,0x24,0x2C,0x24,
0x2C,0x24,0x2C,0x24,0x2C,0x24,0x2C,0x24,
0x2C,0x24,0xEF,0xE7,0xFF,0xBD,0x7E,0x42,
0x3C,0x3C,0x24,0x3C,0x24,0x3C,0x18,0x18
]
}
#16x16 (Link)
t16_16 = {
'name': 'Link',
'data': [
0x07,0x07,0x08,0x0C,0x1B,0x1F,0x2C,0x2C,
0x2B,0x2B,0x2F,0x2F,0x27,0x3F,0x32,0x32,
0x12,0x1A,0x28,0x3C,0x4F,0x5F,0x58,0x5F,
0x30,0x38,0x1E,0x1F,0x31,0x39,0x0F,0x0F,
0xC0,0xC0,0x20,0xE0,0x18,0xF8,0x14,0x34,
0xD4,0xD4,0xF4,0xF4,0xE4,0xFC,0x48,0x48,
0x48,0x58,0x14,0x3C,0xF4,0xFC,0x44,0xCC,
0x48,0x48,0x30,0xF0,0xF8,0xF8,0xF0,0xF0
]
}
#32x32 (Red)
t32_32 = {
'name': 'Red',
'data': [
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x01,
0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x01,0x01,0x06,0x07,
0x18,0x1f,0x7d,0x62,0xfe,0x81,0xff,0x00,
0xfe,0x01,0xff,0x00,0xff,0x38,0xff,0x80,
0xff,0xff,0xff,0xff,0x7f,0x7f,0x7f,0x3f,
0x00,0x00,0x01,0x00,0x06,0x03,0x0a,0x05,
0x0d,0x0a,0x1f,0x13,0x1c,0x1c,0x2f,0x33,
0x3f,0x30,0x3f,0x30,0x1f,0x10,0x1f,0x10,
0x0f,0x0c,0x03,0x03,0x00,0x00,0x00,0x00,
0x3f,0x1e,0xff,0xf1,0x0f,0xfe,0x03,0xff,
0x57,0xae,0xaf,0x58,0xff,0x88,0xff,0xf0,
0xff,0x31,0xff,0x11,0xff,0x12,0xff,0x12,
0xff,0x01,0xff,0xf0,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0xc0,0xc0,0x18,0xf8,
0x04,0xfc,0x04,0xfc,0x82,0x7c,0x42,0xbe,
0xa3,0x5f,0xf8,0x07,0xe1,0x1f,0xfe,0xe6,
0xd6,0xde,0xd4,0xf4,0xd2,0xf0,0xe2,0xb2,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x80,0x80,0x40,0xc0,0x80,0x80,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x04,0xfc,0xf8,0x90,0xe0,0x60,0xd8,0x50,
0x84,0xc4,0x8a,0xca,0x91,0xf1,0xa1,0xf1,
0x20,0xf8,0xc0,0xfc,0xc0,0x7f,0xa0,0xff,
0x51,0xdf,0x8f,0x8f,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x70,0x60,0x88,0x88,0x08,0x88,
0xc4,0x00,0xa4,0x84,0x94,0x9c,0xb8,0xb8,
0xc0,0xc0,0x00,0x00,0x00,0x00,0x00,0x00,
]
}