forked from danielroehrborn/LEGO-Dimensions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
vehicles_and_gadgets.h
343 lines (342 loc) · 12.7 KB
/
vehicles_and_gadgets.h
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
const char legoVehicle_001[] PROGMEM = "Police Car";
const char legoVehicle_002[] PROGMEM = "Aerial Squad Car";
const char legoVehicle_003[] PROGMEM = "Missile Striker";
const char legoVehicle_004[] PROGMEM = "Gravity Sprinter";
const char legoVehicle_005[] PROGMEM = "Street Shredder";
const char legoVehicle_006[] PROGMEM = "Sky Clobberer";
const char legoVehicle_007[] PROGMEM = "Batmobile";
const char legoVehicle_008[] PROGMEM = "Batblaster";
const char legoVehicle_009[] PROGMEM = "Sonic Batray";
const char legoVehicle_010[] PROGMEM = "Benny's Spaceship";
const char legoVehicle_011[] PROGMEM = "Lasercraft";
const char legoVehicle_012[] PROGMEM = "The Annihilator";
const char legoVehicle_013[] PROGMEM = "Delorean";
const char legoVehicle_014[] PROGMEM = "Ultra Time Machine";
const char legoVehicle_015[] PROGMEM = "Electric Time Machine";
const char legoVehicle_016[] PROGMEM = "Hoverboard";
const char legoVehicle_017[] PROGMEM = "Cyclone Board";
const char legoVehicle_018[] PROGMEM = "Ultimate Hoverjet";
const char legoVehicle_019[] PROGMEM = "Eagle interceptor";
const char legoVehicle_020[] PROGMEM = "Eagle Skyblazer";
const char legoVehicle_021[] PROGMEM = "Eagle Swoop Diver";
const char legoVehicle_022[] PROGMEM = "Cragger's Fireship";
const char legoVehicle_023[] PROGMEM = "Croc Command Sub";
const char legoVehicle_024[] PROGMEM = "Swamp Skimmer";
const char legoVehicle_025[] PROGMEM = "Cyber Guard";
const char legoVehicle_026[] PROGMEM = "Cyber-Wrecker";
const char legoVehicle_027[] PROGMEM = "Laser Robot Walker";
const char legoVehicle_028[] PROGMEM = "K9";
const char legoVehicle_029[] PROGMEM = "K9 Ruff Rover";
const char legoVehicle_030[] PROGMEM = "K9 Laser Cutter";
const char legoVehicle_031[] PROGMEM = "TARDIS";
const char legoVehicle_032[] PROGMEM = "Laser-Pulse TARDIS";
const char legoVehicle_033[] PROGMEM = "Energy-Burst TARDIS";
const char legoVehicle_034[] PROGMEM = "Emmet's Excavator";
const char legoVehicle_035[] PROGMEM = "The Destroydozer";
const char legoVehicle_036[] PROGMEM = "Destruct-o-Mech";
const char legoVehicle_037[] PROGMEM = "Winged Monkey";
const char legoVehicle_038[] PROGMEM = "Battle Monkey";
const char legoVehicle_039[] PROGMEM = "Commander Monkey";
const char legoVehicle_040[] PROGMEM = "Axe Chariot";
const char legoVehicle_041[] PROGMEM = "Axe Hurler";
const char legoVehicle_042[] PROGMEM = "Soaring Chariot";
const char legoVehicle_043[] PROGMEM = "Shelob the Great";
const char legoVehicle_044[] PROGMEM = "8-Legged Stalker";
const char legoVehicle_045[] PROGMEM = "Poison Slinger";
const char legoVehicle_046[] PROGMEM = "Homer's Car";
const char legoVehicle_047[] PROGMEM = "Homercraft";
const char legoVehicle_048[] PROGMEM = "SubmaHomer";
const char legoVehicle_049[] PROGMEM = "Taunt-o-Vision";
const char legoVehicle_050[] PROGMEM = "Blast Cam";
const char legoVehicle_051[] PROGMEM = "The MechaHomer";
const char legoVehicle_052[] PROGMEM = "Velociraptor";
const char legoVehicle_053[] PROGMEM = "Spike Attack Raptor";
const char legoVehicle_054[] PROGMEM = "Venom Raptor";
const char legoVehicle_055[] PROGMEM = "Gyro Sphere";
const char legoVehicle_056[] PROGMEM = "Sonic Beam Gyrosphere";
const char legoVehicle_057[] PROGMEM = "Speed Boost Gyrosphere";
const char legoVehicle_058[] PROGMEM = "Clown Bike";
const char legoVehicle_059[] PROGMEM = "Cannon Bike";
const char legoVehicle_060[] PROGMEM = "Anti-Gravity Rocket Bike";
const char legoVehicle_061[] PROGMEM = "Mighty Lion Rider";
const char legoVehicle_062[] PROGMEM = "Lion Blazer";
const char legoVehicle_063[] PROGMEM = "Fire Lion";
const char legoVehicle_064[] PROGMEM = "Arrow Launcher";
const char legoVehicle_065[] PROGMEM = "Seeking Shooter";
const char legoVehicle_066[] PROGMEM = "Triple Ballista";
const char legoVehicle_067[] PROGMEM = "Mystery Machine";
const char legoVehicle_068[] PROGMEM = "Mystery Tow";
const char legoVehicle_069[] PROGMEM = "Mystery Monster";
const char legoVehicle_070[] PROGMEM = "Boulder Bomber";
const char legoVehicle_071[] PROGMEM = "Boulder Blaster";
const char legoVehicle_072[] PROGMEM = "Cyclone Jet";
const char legoVehicle_073[] PROGMEM = "Storm Fighter";
const char legoVehicle_074[] PROGMEM = "Lightning Jet";
const char legoVehicle_075[] PROGMEM = "Electro-Shooter";
const char legoVehicle_076[] PROGMEM = "Blade Bike";
const char legoVehicle_077[] PROGMEM = "Flying Fire Bike";
const char legoVehicle_078[] PROGMEM = "Blades of Fire";
const char legoVehicle_079[] PROGMEM = "Samurai Mech";
const char legoVehicle_080[] PROGMEM = "Samurai Shooter";
const char legoVehicle_081[] PROGMEM = "Soaring Samurai Mech";
const char legoVehicle_082[] PROGMEM = "Companion Cube";
const char legoVehicle_083[] PROGMEM = "Laser Deflector";
const char legoVehicle_084[] PROGMEM = "Gold Heart Emitter";
const char legoVehicle_085[] PROGMEM = "Sentry Turret";
const char legoVehicle_086[] PROGMEM = "Turret Striker";
const char legoVehicle_087[] PROGMEM = "Flying Turret Carrier";
const char legoVehicle_088[] PROGMEM = "Scooby Snack";
const char legoVehicle_089[] PROGMEM = "Scooby Fire Snack";
const char legoVehicle_090[] PROGMEM = "Scooby Ghost Snack";
const char legoVehicle_091[] PROGMEM = "Cloud Cukko Car";
const char legoVehicle_092[] PROGMEM = "X-Stream Soaker";
const char legoVehicle_093[] PROGMEM = "Rainbow Cannon";
const char legoVehicle_094[] PROGMEM = "Invisible Jet";
const char legoVehicle_095[] PROGMEM = "Stealth Laser Shooter";
const char legoVehicle_096[] PROGMEM = "Torpedo Bomber";
const char legoVehicle_097[] PROGMEM = "Ninja Copter";
const char legoVehicle_098[] PROGMEM = "Glaciator";
const char legoVehicle_099[] PROGMEM = "Freeze Fighter";
const char legoVehicle_100[] PROGMEM = "Traveling Time Train";
const char legoVehicle_101[] PROGMEM = "(Traveling Time Train - rebuilt 1)";
const char legoVehicle_102[] PROGMEM = "(Traveling Time Train - rebuilt 2)";
const char legoVehicle_103[] PROGMEM = "Aqua Watercraft";
const char legoVehicle_104[] PROGMEM = "(Aqua Watercraft - rebuilt 1)";
const char legoVehicle_105[] PROGMEM = "(Aqua Watercraft - rebuilt 2)";
const char legoVehicle_106[] PROGMEM = "Drill Driver";
const char legoVehicle_107[] PROGMEM = "(Drill Driver - rebuilt 1)";
const char legoVehicle_108[] PROGMEM = "(Drill Driver - rebuilt 2)";
const char legoVehicle_109[] PROGMEM = "Quinn-mobile";
const char legoVehicle_110[] PROGMEM = "(Quinn-mobile - rebuilt 1)";
const char legoVehicle_111[] PROGMEM = "(Quinn-mobile - rebuilt 2)";
const char legoVehicle_112[] PROGMEM = "The Jokers Chopper";
const char legoVehicle_113[] PROGMEM = "(The Jokers Chopper - rebuilt 1)";
const char legoVehicle_114[] PROGMEM = "(The Jokers Chopper - rebuilt 2)";
const char legoVehicle_115[] PROGMEM = "Hover Pod";
const char legoVehicle_116[] PROGMEM = "(Hover Pod - rebuilt 1)";
const char legoVehicle_117[] PROGMEM = "(Hover Pod - rebuilt 2)";
const char legoVehicle_118[] PROGMEM = "Dalek";
const char legoVehicle_119[] PROGMEM = "(Dalek - rebuilt 1)";
const char legoVehicle_120[] PROGMEM = "(Dalek - rebuilt 2)";
const char legoVehicle_121[] PROGMEM = "Ecto-1";
const char legoVehicle_122[] PROGMEM = "(Ecto-1 - rebuilt 1)";
const char legoVehicle_123[] PROGMEM = "(Ecto-1 - rebuilt 2)";
const char legoVehicle_124[] PROGMEM = "Ghost Trap";
const char legoVehicle_125[] PROGMEM = "(Ghost Trap - rebuilt 1)";
const char legoVehicle_126[] PROGMEM = "(Ghost Trap - rebuilt 2)";
const char legoVehicle_127[] PROGMEM = "unknown";
const char legoVehicle_128[] PROGMEM = "unknown";
const char legoVehicle_129[] PROGMEM = "unknown";
const char legoVehicle_130[] PROGMEM = "unknown";
const char legoVehicle_131[] PROGMEM = "unknown";
const char legoVehicle_132[] PROGMEM = "unknown";
const char legoVehicle_133[] PROGMEM = "Llyod's Golden Dragon";
const char legoVehicle_134[] PROGMEM = "(Golden Dragon - rebuilt 1)";
const char legoVehicle_135[] PROGMEM = "(Golden Dragon - rebuilt 2)";
const char legoVehicle_136[] PROGMEM = "unknown";
const char legoVehicle_137[] PROGMEM = "unknown";
const char legoVehicle_138[] PROGMEM = "unknown";
const char legoVehicle_139[] PROGMEM = "unknown";
const char legoVehicle_140[] PROGMEM = "unknown";
const char legoVehicle_141[] PROGMEM = "unknown";
const char legoVehicle_142[] PROGMEM = "unknown";
const char legoVehicle_143[] PROGMEM = "unknown";
const char legoVehicle_144[] PROGMEM = "unknown";
const char legoVehicle_145[] PROGMEM = "Mega Flight Dragon";
const char legoVehicle_146[] PROGMEM = "(Mega Flight Dragon - rebuilt 1)";
const char legoVehicle_147[] PROGMEM = "(Mega Flight Dragon - rebuilt 2)";
const char legoVehicle_148[] PROGMEM = "unknown";
const char legoVehicle_149[] PROGMEM = "unknown";
const char legoVehicle_150[] PROGMEM = "unknown";
const char legoVehicle_151[] PROGMEM = "unknown";
const char legoVehicle_152[] PROGMEM = "unknown";
const char legoVehicle_153[] PROGMEM = "unknown";
const char legoVehicle_154[] PROGMEM = "unknown";
const char legoVehicle_155[] PROGMEM = "unknown";
const char legoVehicle_156[] PROGMEM = "Flying White Dragon";
const char legoVehicle_157[] PROGMEM = "Golden Fire Dragon";
const char legoVehicle_158[] PROGMEM = "Ultra Destruction Dragon";
const char legoVehicle_159[] PROGMEM = "Arcade Machine";
const char legoVehicle_160[] PROGMEM = "8-bit Shooter";
const char legoVehicle_161[] PROGMEM = "The Pixelator";
const char legoVehicle_162[] PROGMEM = "G-61555 Spy Hunter";
const char legoVehicle_163[] PROGMEM = "The Interdiver";
const char legoVehicle_164[] PROGMEM = "Aerial Spyhunter";
const char legoVehicle_165[] PROGMEM = "Slime Shooter";
const char legoVehicle_166[] PROGMEM = "Slime Exploder";
const char legoVehicle_167[] PROGMEM = "Slime Streamer";
const char legoVehicle_168[] PROGMEM = "Terror Dog";
const char legoVehicle_169[] PROGMEM = "Terror Dog Destroyer";
const char legoVehicle_170[] PROGMEM = "Soaring Terror Dog";
static const char* const legoVehicleStr[] PROGMEM = {
legoVehicle_001,
legoVehicle_002,
legoVehicle_003,
legoVehicle_004,
legoVehicle_005,
legoVehicle_006,
legoVehicle_007,
legoVehicle_008,
legoVehicle_009,
legoVehicle_010,
legoVehicle_011,
legoVehicle_012,
legoVehicle_013,
legoVehicle_014,
legoVehicle_015,
legoVehicle_016,
legoVehicle_017,
legoVehicle_018,
legoVehicle_019,
legoVehicle_020,
legoVehicle_021,
legoVehicle_022,
legoVehicle_023,
legoVehicle_024,
legoVehicle_025,
legoVehicle_026,
legoVehicle_027,
legoVehicle_028,
legoVehicle_029,
legoVehicle_030,
legoVehicle_031,
legoVehicle_032,
legoVehicle_033,
legoVehicle_034,
legoVehicle_035,
legoVehicle_036,
legoVehicle_037,
legoVehicle_038,
legoVehicle_039,
legoVehicle_040,
legoVehicle_041,
legoVehicle_042,
legoVehicle_043,
legoVehicle_044,
legoVehicle_045,
legoVehicle_046,
legoVehicle_047,
legoVehicle_048,
legoVehicle_049,
legoVehicle_050,
legoVehicle_051,
legoVehicle_052,
legoVehicle_053,
legoVehicle_054,
legoVehicle_055,
legoVehicle_056,
legoVehicle_057,
legoVehicle_058,
legoVehicle_059,
legoVehicle_060,
legoVehicle_061,
legoVehicle_062,
legoVehicle_063,
legoVehicle_064,
legoVehicle_065,
legoVehicle_066,
legoVehicle_067,
legoVehicle_068,
legoVehicle_069,
legoVehicle_070,
legoVehicle_071,
legoVehicle_072,
legoVehicle_073,
legoVehicle_074,
legoVehicle_075,
legoVehicle_076,
legoVehicle_077,
legoVehicle_078,
legoVehicle_079,
legoVehicle_080,
legoVehicle_081,
legoVehicle_082,
legoVehicle_083,
legoVehicle_084,
legoVehicle_085,
legoVehicle_086,
legoVehicle_087,
legoVehicle_088,
legoVehicle_089,
legoVehicle_090,
legoVehicle_091,
legoVehicle_092,
legoVehicle_093,
legoVehicle_094,
legoVehicle_095,
legoVehicle_096,
legoVehicle_097,
legoVehicle_098,
legoVehicle_099,
legoVehicle_100,
legoVehicle_101,
legoVehicle_102,
legoVehicle_103,
legoVehicle_104,
legoVehicle_105,
legoVehicle_106,
legoVehicle_107,
legoVehicle_108,
legoVehicle_109,
legoVehicle_110,
legoVehicle_111,
legoVehicle_112,
legoVehicle_113,
legoVehicle_114,
legoVehicle_115,
legoVehicle_116,
legoVehicle_117,
legoVehicle_118,
legoVehicle_119,
legoVehicle_120,
legoVehicle_121,
legoVehicle_122,
legoVehicle_123,
legoVehicle_124,
legoVehicle_125,
legoVehicle_126,
legoVehicle_127,
legoVehicle_128,
legoVehicle_129,
legoVehicle_130,
legoVehicle_131,
legoVehicle_132,
legoVehicle_133,
legoVehicle_134,
legoVehicle_135,
legoVehicle_136,
legoVehicle_137,
legoVehicle_138,
legoVehicle_139,
legoVehicle_140,
legoVehicle_141,
legoVehicle_142,
legoVehicle_143,
legoVehicle_144,
legoVehicle_145,
legoVehicle_146,
legoVehicle_147,
legoVehicle_148,
legoVehicle_149,
legoVehicle_150,
legoVehicle_151,
legoVehicle_152,
legoVehicle_153,
legoVehicle_154,
legoVehicle_155,
legoVehicle_156,
legoVehicle_157,
legoVehicle_158,
legoVehicle_159,
legoVehicle_160,
legoVehicle_161,
legoVehicle_162,
legoVehicle_163,
legoVehicle_164,
legoVehicle_165,
legoVehicle_166,
legoVehicle_167,
legoVehicle_168,
legoVehicle_169,
legoVehicle_170,
};