-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstrings.xml
8679 lines (8679 loc) · 761 KB
/
strings.xml
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
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<tlk>
<string id="805">Tea Test</string>
<string id="855">Plot 1</string>
<string id="859">Plot 2</string>
<string id="863">Plot 3</string>
<string id="865">grahamTest</string>
<string id="867">[Open on a black screen. Fade in the following caption.]</string>
<string id="868">CAPTION: "Suddenly, at the height of their arrogance, the Nocturnus Clan mysteriously vanished."</string>
<string id="869">CAPTION: "The dark sky opened and swallowed them whole. Gone were their cities, their people, their entire existence."</string>
<string id="870">[Fade the captions out.]</string>
<string id="871">[Fade in to a very wide shot of the countryside near Metropolis, at nighttime, looking somewhat peaceful--the calm before the storm. We slowly pan right, in a long enough pan to show a caption.]
</string>
<string id="872">CAPTION: Some time ago....</string>
<string id="873">[Keep panning as the caption fades. A second or two later, a fighter jet flies in front of the camera, holding long enough and close enough to show the letters "GUN" on its hull.]</string>
<string id="874">[The plane then turns and swoops off. When the place flies away, we reveal a flaming Egg Carrier in the distance over the city. GUN airships and fighters are pelting the carrier with gunfire.]</string>
<string id="875">CAPTION: Metropolis, headquarters of the evil Eggman</string>
<string id="876">[Cut to inside the carrier. A big battle is going on between Eggman and Sonic-and-friends. Eggman has more or less lost already, but he won't go down without a fight.]</string>
<string id="877">[As each character speaks, show a caption that tells us that character's name.]</string>
<string id="878">This is it, Eggman! Give up!</string>
<string id="879">Ha ha ha ha ha! You may have damaged my new Egg Carrier, Sonic, but you'll never defeat me!</string>
<string id="880">We'll see about that! Tails! How's it coming?</string>
<string id="881">Almost there, Sonic!</string>
<string id="882">We have to hold him off! Tails needs more time!</string>
<string id="883">We can do it!</string>
<string id="884">Then let's go!</string>
<string id="885">[Fighting ensues! If possible, show each character doing a signature move.]</string>
<string id="886">Ha ha ha! Even together you can't beat me! This is my hour of victory!</string>
<string id="887">Not after we bring this Egg Carrier down!</string>
<string id="888">Tails! Now!</string>
<string id="889">Right!</string>
<string id="890">[Cut to outside the carrier. Explosions rock the big ship, and the ship begins to sink toward Metropolis. Cut back inside the carrier, to Eggman.]</string>
<string id="891">What?! No!</string>
<string id="892">[Explosions cover the screen. Back outside, explosions cover the ship as it falls. The GUN ships and fighters begin to leave the scene.]</string>
<string id="893">[Back to Eggman.]</string>
<string id="894">Curse you, Sonic! You haven't won yet!!</string>
<string id="895">[Just then, a huge block of metal falls, cutting Sonic off from Eggman and apparently killing Eggman. Cut to a wide shot of the team.]</string>
<string id="896">We have to get out of here!</string>
<string id="897">What about Eggman?</string>
<string id="898">There's no time! Let's go!</string>
<string id="899">[The team runs for safety, starting with Amy, then Knuckles. Tails lingers for a split second, then runs, and Sonic stands alone watching the direction Eggman went. Then he turns and dashes away at high speed.]</string>
<string id="900">[The ship falls into Metropolis and explodes. When the ship hits the city, smaller explosions begin to spread through the city.]</string>
<string id="901">[At the last minute, our heroes escape, thanks to Tails' Tornado. Fade out.]</string>
<string id="902">[Fade in on the team in Tails' Workshop.]</string>
<string id="903">We did it!</string>
<string id="904">You defeated Eggman, Sonic! There's no way he could escape that!</string>
<string id="905">Yay!</string>
<string id="906">[Knuckles gives a stoic and silent nod to Sonic.]</string>
<string id="907">[Sonic smiles and nods back, arms crossed, but he says nothing.]</string>
<string id="908">[Fade out. Fade in on a rain forest-looking area.]</string>
<string id="950">CAPTION: Present day, the other side of the world.</string>
<string id="951">[Sonic is running at high speeds through some green, peaceful area. His wrist communicator beeps.]</string>
<string id="952">Tails calling Sonic! Come in, Sonic!</string>
<string id="953">[Sonic abruptly stops running, and we go into interactive dialogue.]</string>
<string id="1018">[CUTSCENE: A boat pulls up to shore on Tutorial Island. As it lands, a door opens, and Sonic and the captain walk out onto the island.]</string>
<string id="1019">This is as far as I can take you, Sonic.</string>
<string id="1020">Good luck!</string>
<string id="1021">[The captain goes back on the boat. The door closes, and the boat sails away.]</string>
<string id="1026">I must... keep... working....</string>
<string id="1027">Oh! Hey! You're Sonic the Hedgehog!</string>
<string id="1028">I'm so glad you showed up. I've been chopping away at these logs for hours now, and I'm not even close to done. </string>
<string id="1030">But I'm so tired, Sonic. I wish someone would help me. Even if just a little.</string>
<string id="1031">Oh, it's easy! Just go over to the woodpile, and when the action bubble appears, touch it or press the L Button or R Button to chop the wood!</string>
<string id="1032">The wood is just right there. Thank you so much!</string>
<string id="1037">We have time to do this, Sonic. Let's help him!</string>
<string id="1040">Oh, I won't burden you with that, Sonic. I'm just an old man trying to chop some logs.</string>
<string id="1042">You look like you could use some help.</string>
<string id="1045">What do I need to do?</string>
<string id="1050">I have important things to do!</string>
<string id="1054">That's me!</string>
<string id="1057">What are you working on out here?</string>
<string id="1059">Oh, you did it! Thank you so much!</string>
<string id="1060">I won't keep you any longer. Take this... I'm too tired for even POW Candy to help me!</string>
<string id="1061">Nice job, Sonic! You helped the man, and you got experience points!</string>
<string id="1071">Oh, Sonic, thank you so much for helping a tired old man!</string>
<string id="1556">As you know, we've been tracking the Marauders for some time.</string>
<string id="1557">For a while, we had no luck. But recently, our satellites noticed some activity at four locations in Green Hill Zone and Central City.</string>
<string id="1558">Recognize those places?</string>
<string id="1559">Those are Eggman's old hideouts.</string>
<string id="1562">Unfortunately, we can't tell which, if any, of these hideouts is the one where they're keeping Knuckles.</string>
<string id="1563">Sonic, you and your team will go to each of the hideouts and investigate. Rouge will go with you as your contact with GUN.</string>
<string id="1564">Good. Our satellites have picked up activity at two locations in Green Hill Zone and two places inside Central City. </string>
<string id="1566">We'll mark them on your map. Visit each one, and you should find the echidna.</string>
<string id="1567">Good luck, team. Now go.</string>
<string id="1568">We detected electronic resonance coming from those old hideouts, and we've seen shadowy figures going in and out.</string>
<string id="1569">But so far, no sign of Eggman himself. Just a few old, broken-down robots here and there.</string>
<string id="1571">I can't spare troops, son. The Marauders are a major threat, and I can't leave the land unsecured.</string>
<string id="1572">Besides, rescuing the echidna takes the kind of small-unit tactics you and your team are known for.</string>
<string id="1573">I'm better than any squad of boneheaded GUN troops, anyway. I promise, with Rouge around, you won't miss those soldiers a bit.</string>
<string id="1581">Let's get moving. We have to save Knuckles.</string>
<string id="1586">Have you seen any sign of Eggman?</string>
<string id="1589">So, instead of GUN troops, you're giving us ROUGE?</string>
<string id="1861">Amy</string>
<string id="1865">And stay down.</string>
<string id="1866">Knuckles! You're alive!</string>
<string id="1867">I am. I thought you might try to rescue me. I just wasn't going to sit around and wait.</string>
<string id="1868">I see you called in Sonic. If it were any other situation, I might say that wasn't necessary.</string>
<string id="1870">It's the Marauders. They took the last Chaos Emerald, just as we predicted. </string>
<string id="1871">They somehow disabled Tails' trap and overwhelmed me with numbers. </string>
<string id="1872">There must have been a lot of them!</string>
<string id="1873">There were, and they fought like nothing I've ever seen. Still, I would have beaten them, but their leader was too strong.</string>
<string id="1874">I assume they got the Emerald?</string>
<string id="1875">Yes. I'm sorry, Knuckles, I couldn't take them by myself. </string>
<string id="1876">Then I'm going to get it back.</string>
<string id="1877">This is my fight, Sonic. I am the last echidna and the guardian of the Emeralds.</string>
<string id="1878">And I definitely don't want to team up with that bat!</string>
<string id="1879">Mm. The feeling is mutual.</string>
<string id="1880">Oh, don't be pig-headed, Knuckles! You can't do this on your own!</string>
<string id="1881">Fine. You can come. But don't get in my way.</string>
<string id="1883">You've been gone a long time, Sonic, so I'll say this nicely.</string>
<string id="1884">You're not the boss around here. Not anymore. YOU decided to go away for a while. Not me. </string>
<string id="1885">Hm.</string>
<string id="1886">So what do we do?</string>
<string id="1887">We go to Angel Island and protect the Master Emerald. We need to get up there before the Marauders do.</string>
<string id="1889">There's no time to stand around talking. Let's hurry.</string>
<string id="1890">You have been gone a while, Sonic.</string>
<string id="1891">Absence makes the heart grow fonder, right?</string>
<string id="1892">But you came back when we needed you!</string>
<string id="1894">I...</string>
<string id="1895">I have a boyfriend....</string>
<string id="1896">You... You're probably right. I couldn't beat them alone.</string>
<string id="1897">Just know that they're very strong, and very dangerous. They have technology unlike anything I've ever seen before.</string>
<string id="1898">They seem to come out of nowhere. If defeated, they disappear into thin air.</string>
<string id="1899">We've never fought anything like this before, Sonic. </string>
<string id="1901">Not much. They wore dark masks and armor, so I couldn't make out who they were. </string>
<string id="1902">They wear high-tech armor and fight like mad. Whoever they are, they're trained for battle.</string>
<string id="1903">But I'm not sure they're working alone. Someone else was calling the shots, but I couldn't tell who.</string>
<string id="1904">Anytime the Chaos Emeralds are in danger, Eggman's the first villain I think of.</string>
<string id="1908">Sonic!</string>
<string id="1909">Knuckles is the finest guardian of the Master Emerald ever! He's never failed to protect it before!</string>
<string id="1917">What's going on here, Knuckles?</string>
<string id="1925">We'll go with you.</string>
<string id="1930">Your way? We came here to save YOU, remember?</string>
<string id="1933">Well, I'm back now. Let's get to work.</string>
<string id="1939">Do the rest of you feel this way, too?</string>
<string id="1942">What about you, Amy?</string>
<string id="1946">You need us, Knuckles. We can help beat the Marauders.</string>
<string id="1950">We can do this. I promise.</string>
<string id="1952">Knuckles, what do you know about the Marauders?</string>
<string id="1955">Let's go. We have to stop the Marauders!</string>
<string id="1956">Could they be working for Eggman?</string>
<string id="1960">Some guardian you turned out to be!</string>
<string id="1963">We have to get moving. No doubt Shade knows you found me.</string>
<string id="1964">Right. Let's get back to the workshop now!</string>
<string id="1965">No. Wait. Look in the sky!</string>
<string id="1966">What is it?</string>
<string id="2045">Timmy! They found you!</string>
<string id="2054">I'm so worried. I hope Timmy is okay!</string>
<string id="2066">Oh, Sonic the Hedgehog! I need your help! My son Timmy is stuck in a well!</string>
<string id="2118">Thank you! You saved me!</string>
<string id="2120">I don't know! I had just built a fort in here, and I was hooking up my new defense system when they came!</string>
<string id="2121">Defense system?</string>
<string id="2123">Oh, it's this piece of metal I found. It's just junk, but I pretended it was an alarm and a cannon! But I think the scorpion wanted to take it away!</string>
<string id="2124">Why would a scorpion want that piece of junk?</string>
<string id="2125">Can I see that?</string>
<string id="2126">Sure, you can keep it! I never want to see it again!</string>
<string id="2130">Thanks again, Sonic!</string>
<string id="2132">Look, Sonic! It's another Eggman device. Hm. I think I have all I need to... Yes!</string>
<string id="2133">These fit together like so... and you clip this here... and connect this... Yay!</string>
<string id="2134">The devices come together to form some kind of random pattern generator. I'm not sure what it's for.</string>
<string id="2136">We'd better keep looking for Eggman. Let's go.</string>
<string id="2138">Look, Sonic! It's another Eggman device. Maybe that's what set off those animals!</string>
<string id="2139">Look, Sonic. There's an Eggman device! Maybe that's what set off those animals!</string>
<string id="2140">That must be what our tracker detected!</string>
<string id="2141">Hm. I can't tell what it's used for. Maybe I can examine it some other time. </string>
<string id="2142">I never thought I'd be saved by the famous Sonic the Hedgehog!</string>
<string id="2143">Help! Help!</string>
<string id="2147">Why was that scorpion so mad at you?</string>
<string id="2154">Can you find your way home?</string>
<string id="2157">You've heard of me?</string>
<string id="2170">You're safe now. Can you find your way home?</string>
<string id="2177">Ah, Sonic the Hedgehog! I heard you came back!</string>
<string id="2178">What can I do ya for?</string>
<string id="2179">Aww. No way. Eggman's here. </string>
<string id="2181">Eggman? Are you folks looking for Eggman?</string>
<string id="2182">Yes! Have you seen him?</string>
<string id="2183">No sir, no I haven't. But I thought he was gone for good!</string>
<string id="2184">So did we.</string>
<string id="2185">Sorry to have bothered you, sir.</string>
<string id="2186">Oh, it's no bother at all!</string>
<string id="2187">You folks are welcome here any time!</string>
<string id="2188">I don't know, young fella. I've been called many things in my day, but as you can see, I'm not Eggman!</string>
<string id="2189">I do have a strange piece of equipment I picked up the other day. Maybe it's messing with your machine there.</string>
<string id="2190">What sort of equipment?</string>
<string id="2191">Oh, I got it this from a salesman a couple days ago. Said his name was Sal, I think. </string>
<string id="2192">He told me it was a coffee maker, he did. And I love me some coffee!</string>
<string id="2194">Anyway, after he left, I couldn't get it to work. </string>
<string id="2202">Well, let's keep looking for Eggman.</string>
<string id="2206">Why would our Eggman tracker lead us here?</string>
<string id="2213">Are you sure that thing is working correctly?</string>
<string id="2214">I traded him my favorite stapler for it, I tell you. I don't know what came over me.</string>
<string id="2215">I think I was ripped off. I don't think it is a coffee maker at all!</string>
<string id="2216">Maybe our tracker is picking up that machine.</string>
<string id="2217">See it? I'll do ya one better. If you can get me my stapler back, you can have it.</string>
<string id="2218">That salesman said he was heading off into Green Hill Zone. I got no idea what he'd be doing out there. </string>
<string id="2219">Get me my stapler, and this dratted machine is yours.</string>
<string id="2221">I sure would be thankful, Sonic. Just come on back here when you're done. </string>
<string id="2222">I'll have that piece of equipment all shined up by the time you get back!</string>
<string id="2223">Name's Sal, I believe. He's a shifty sort, but my old coffee maker went on the fritz, and I was desperate!</string>
<string id="2224">I don't know much more than that. Just look for someone who looks like a rotten cheat, and that'll be him. </string>
<string id="2225">If it's a piece of Eggman equipment, it might be worth looking at. Maybe it can help us find him.</string>
<string id="2226">I'd be very grateful for your help, Sonic. But I understand if you can't do it.</string>
<string id="2227">The poor man! We have to help him!</string>
<string id="2228">This is a waste of time, but we can't let that salesman get away with this.</string>
<string id="2229">I want to meet this salesman. Sounds like quite a charmer!</string>
<string id="2230">This old man is so nice. Let's help him, Sonic!</string>
<string id="2231">Uh.... What was the question?</string>
<string id="2232">I understand. I'm sure you folks have plenty to do.</string>
<string id="2233">It's picking something up around here, that's for sure!</string>
<string id="2234">If it isn't Sonic the Hedgehog and his little buddies!</string>
<string id="2235">What can I do ya for?</string>
<string id="2236">Well, all right. Good day to you!</string>
<string id="2237">Fantabulous! Splendid!</string>
<string id="2238">And as promised, here is that blasted machine.</string>
<string id="2239">I hope you find some use for it. I certainly didn't!</string>
<string id="2240">Look, Sonic! It's another Eggman device. Hm. I think I have all I need to... Yes!</string>
<string id="2241">These fit together like so... and you clip this here... and connect this... Yay!</string>
<string id="2242">The devices come together to form some kind of random pattern generator. I'm not sure what it's for.</string>
<string id="2244">We'd better keep looking for Eggman. Let's go.</string>
<string id="2246">Look, Sonic! It's another Eggman device. No wonder the old man couldn't get it to make coffee!</string>
<string id="2247">Look, Sonic. It wasn't a coffee maker at all! It's an Eggman device!</string>
<string id="2248">That must be what our tracker detected!</string>
<string id="2249">Hm. I can't tell what it's used for. Maybe I can examine it some other time. </string>
<string id="2253">Oh well. We should get back to finding Eggman.</string>
<string id="2254">May we see that machine?</string>
<string id="2257">Don't worry. We'll get your stapler back for you.</string>
<string id="2261">What do you know about this salesman?</string>
<string id="2263">Do you guys feel like doing this?</string>
<string id="2270">Sorry, old man. We can't help you.</string>
<string id="2274">Nothing, really. Just passing through.</string>
<string id="2276">May we see your coffee machine?</string>
<string id="2277">We got your stapler back for you.</string>
<string id="2290">Good day, my friend! Might I interest you in a bargain?</string>
<string id="2291">No, thanks. We're in a hurry.</string>
<string id="2292">I know you cheated the shopkeeper.</string>
<string id="2293">What are you selling?</string>
<string id="2294">Well, I might have something to help with that. But hey, it's your loss!</string>
<string id="2295">Be well, my friends!</string>
<string id="2296">What? Me, cheat? You must be mistaken.</string>
<string id="2297">The last time I traded anything to a shopkeeper, it was a fair deal: his stapler for my coffee maker.</string>
<string id="2298">A deal is a deal, my friends. You look like smart folks; you know how the world works.</string>
<string id="2299">Well, I.... You don't have to get upset, now!</string>
<string id="2300">I'll be glad to give you the stapler! I--I didn't want it, anyway. Too... shiny.</string>
<string id="2301">Here! May your papers stay together forever, I say. Whew.</string>
<string id="2302">And on that note, I'll be on my way. People to see, and all that!</string>
<string id="2303">Ta!</string>
<string id="2304">Trading! Something for something, nothing for nothing!</string>
<string id="2305">It's the greatest thing in the world, trading. None of this cash money baloney. And a deal is a deal!</string>
<string id="2306">Wonderful. I hoped you'd say that. </string>
<string id="2307">Might I interest you in a nice little above-ground pool? It's economy-sized!</string>
<string id="2309">A plastic cup? Or a POOL?</string>
<string id="2310">You think about it, huh? I'll be around!</string>
<string id="2311">Oh! Fabulous things. Things you can't live without!</string>
<string id="2312">Of course, I don't sell things for money. I'm a bartering man. Goods for goods! Easy trade!</string>
<string id="2313">What do you need? New socks? A jaunty hat? A sack of tomatoes?</string>
<string id="2314">Perhaps a cute little toy bunny for the young lady?</string>
<string id="2315">Tee hee!</string>
<string id="2317">I have lots of things, wonderful things! All yours for a reasonable price. </string>
<string id="2321">Give me that stapler or else!</string>
<string id="2327">And how does the world work?</string>
<string id="2329">Fine, keep the stapler. I have other things to do.</string>
<string id="2331">That's a plastic cup.</string>
<string id="2340">Hello again! Back for another look at the finest items this side of the Blue Ridge Zone?</string>
<string id="2341">*bzt* Master Eggman. *bzt* My mission is complete. *bzt*</string>
<string id="2342">*bzt* I desire to know my function. *bzt*</string>
<string id="2343">*bzt* Good day, soft creatures. *bzt* Do you know me? *bzt*</string>
<string id="2349">*bzt* I seem to have lost my mission. *bzt* My programming is forgotten. *bzt*</string>
<string id="2356">*bzt* Soft creatures. Please. *bzt* I desire to know my function. *bzt*</string>
<string id="2357">*bzt* The soft creatures are no help to me. *bzt*</string>
<string id="2358">*bzt* I beg you to let me be alone. *bzt*</string>
<string id="2359">*bzt* Eggman. *bzt* I remember now. *bzt*</string>
<string id="2360">*bzt* You are Sonic the Hedgehog. *bzt* I am supposed to destroy you. *bzt*</string>
<string id="2361">*bzt* Thank you, Sonic the Hedgehog. *bzt* You have given me my purpose. *bzt*</string>
<string id="2362">*bzt* Yes. *bzt* I believe you are correct. *bzt*</string>
<string id="2363">*bzt* My duties complete, I can now rest. *bzt*</string>
<string id="2364">*bzt* Thank you, soft creatures. *bzt* Now I have found rest. *bzt*</string>
<string id="2365">Look, Sonic! The robot's head looks like another Eggman device. Hm. I think I have all I need to... Yes!</string>
<string id="2366">These fit together like so... and you clip this here... and connect this... Yay!</string>
<string id="2367">The devices come together to form some kind of random pattern generator. I'm not sure what it's for.</string>
<string id="2369">We'd better keep looking for Eggman. Let's go.</string>
<string id="2371">Look, Sonic! The robot's head is another Eggman device. It must be old if it's forgotten its programming!</string>
<string id="2372">Look, Sonic. The robot's head... it's an Eggman device!</string>
<string id="2373">That must be what our tracker detected!</string>
<string id="2374">Hm. I can't tell what it's used for. Maybe I can examine it some other time. </string>
<string id="2375">I say we smash it!</string>
<string id="2376">I say we ignore it and keep moving.</string>
<string id="2377">I don't know, Sonic. What if this is a clue?</string>
<string id="2378">Oh, Sonic! We have to help it! It's so sad!</string>
<string id="2379">Really? We're debating what to do about a sad robot that's not attacking us? </string>
<string id="2380">And everyone thinks I'M crazy.</string>
<string id="2381">What's everyone staring at?</string>
<string id="2382">*bzt* Please help. *bzt* My function is unknown to me. *bzt*</string>
<string id="2384">I don't care about your function.</string>
<string id="2398">We have more important things to do right now.</string>
<string id="2401">You are an Eggman robot. You were made to serve Eggman.</string>
<string id="2405">You have completed your duties. You are free. </string>
<string id="2418">What do you guys think we should do?</string>
<string id="2473">I don't have time for this.</string>
<string id="2476">That's right, coward! Run!</string>
<string id="2477">Hey, Shadow left something behind. This is what set off our tracker!</string>
<string id="2478">It looks like another Eggman device. Hm. I think I have all I need to... Yes!</string>
<string id="2479">These fit together like so... and you clip this here... and connect this... Yay!</string>
<string id="2480">The devices come together to form some kind of random pattern generator. I'm not sure what it's for.</string>
<string id="2482">We'd better keep looking for Eggman. Let's go.</string>
<string id="2484">It looks like an Eggman device. I wonder what Shadow was doing with it.</string>
<string id="2485">Hm. I think I have an idea what we can do with these devices. Let's look around for more.</string>
<string id="2571">Stop, my robot sentries! Desist!</string>
<string id="2572">Eggman!</string>
<string id="2573">I knew he was still around! I knew it!</string>
<string id="2574">You're finished, Eggman!</string>
<string id="2575">Yes, yes, Sonic. I know. Please stand down and let us speak of this like civilized men!</string>
<string id="2576">Don't trust him, Sonic!</string>
<string id="2577">Ha ha ha! My dear, I wouldn't trust me, either!</string>
<string id="2578">But I am as angry as you are that someone has the gall to activate MY old machines and use them for their own purposes!</string>
<string id="2580">It just looks bad, I tell you. I was young when I made those old robots! Young and full of beans!</string>
<string id="2581">Why should we trust you, Eggman?</string>
<string id="2582">He's right, Eggman. Everything points to you.</string>
<string id="2583">Ha ha ha! Sonic, it's adorable how much you hate me.</string>
<string id="2584">But you simply must trust me, my blue spiky friend.</string>
<string id="2585">For I, the illustrious Doctor Robotnik...</string>
<string id="2586">... have utterly and completely reformed!</string>
<string id="2862">That's quite far enough.</string>
<string id="2863">That voice....</string>
<string id="2864">Abandon your quest and back away now. This is the last warning before we exterminate you.</string>
<string id="2865">You must be Shade.</string>
<string id="2867">Yes. I am Shade of the exiled Nocturnus Clan. </string>
<string id="2868">Turn around now, primitives. Don't make me destroy you.</string>
<string id="2869">What have you done with the Chaos Emeralds?!</string>
<string id="2870">Don't worry. They're safe.</string>
<string id="2871">We are simply returning them to their true masters!</string>
<string id="2873">What?!?</string>
<string id="2874">But I thought Knuckles was the last!</string>
<string id="2875">This is... not possible! Only my bloodline survived the wrath of Perfect Chaos!</string>
<string id="2876">Your clan paid for its arrogance, but the Nocturnus Clan was wrongly punished for our success. And now we will return to this world!</string>
<string id="2877">You can't be the Nocturnus Clan. This is a trick!</string>
<string id="2878">And yet here I stand. Now, step aside, or I will show you the power of the Nocturnus!</string>
<string id="2880">Let me see you try!</string>
<string id="2881">Everyone! Fall back! Now!</string>
<string id="2882">This party is over, friends. You will not follow us.</string>
<string id="2885">No!!!</string>
<string id="2887">Amy... Amy!</string>
<string id="2888">We have to find another way.</string>
<string id="2889">Oh, spare me the crying. This is my city. I know every possible way in. </string>
<string id="2890">There are railway tunnels that lead into the city not far from here. If we can find one, and it's not completely caved in....</string>
<string id="2891">We can get in that way.</string>
<string id="2892">Sonic, I think it's our only hope.</string>
<string id="2893">The tunnels are off to the west. </string>
<string id="2894">The Marauders won't just let us go. We should be careful.</string>
<string id="2895">Let's go, team!</string>
<string id="2896">There are countless ways into my city! Er, most of which I have kept secret... even from myself!</string>
<string id="2897">I designed the subway system myself. I have no doubt the tunnels withstood the destruction of Metropolis.</string>
<string id="2898">Well, it should.</string>
<string id="2899">Yes... I....</string>
<string id="2900">We have work to do, Sonic. We'll talk about this later.</string>
<string id="2926">It's okay, Amy. We'll get through, I promise.</string>
<string id="2931">Then let's go.</string>
<string id="2935">Eggman, are these tunnels the only way in?</string>
<string id="2937">That doesn't fill me with confidence.</string>
<string id="2938">Let's go!</string>
<string id="2939">Knuckles? Are you all right?</string>
<string id="3247">Didn't your mommy ever tell you not to take things that don't belong to you?</string>
<string id="3248">Master Ix, the hedgehog is here.</string>
<string id="3249">Fools! Insignificant worms who beg for annihilation. </string>
<string id="3250">Leave Shade to me, Sonic.</string>
<string id="3251">So. You feel worthy of combat with my finest warrior, do you?</string>
<string id="3252">Knuckles, was it? "Last of the Echidnas"? It must be shameful to have been misled all these years.</string>
<string id="3253">Quit babbling and bring it on!</string>
<string id="3254">Frankly, my hotheaded worm, you are not worthy. </string>
<string id="3255">Come, my minions. Brush away these motes of dust as I make my victory complete!</string>
<string id="3256">Power-mad techno-wizards and Nocturnus assassins. It's been good fighting with you, Sonic.</string>
<string id="3257">Don't get all misty on me, Knuckles. It ain't over yet!</string>
<string id="3467">Enough of this!</string>
<string id="3468">You've fought well, but even you cannot stop me from conquering this world!</string>
<string id="3469">Imperator Ix... we never discussed conquering this world. We only wanted to return to it! I won't....</string>
<string id="3476">I have what I came for, little worms. Now that I have the Master Emerald, no one can stop me!</string>
<string id="3477">Look well upon your world. Soon it will all be mine!</string>
<string id="3479">No!</string>
<string id="3481">Ha ha ha ha ha!</string>
<string id="3483">No!</string>
<string id="3485">Sonic! We have to go!</string>
<string id="3487">No! We have to stop Ix!</string>
<string id="3488">There's no time!</string>
<string id="3489">Everyone! Brace yourselves!</string>
<string id="3591">There's someone trapped in that cave! And there's an Eggman signal coming from inside!</string>
<string id="3592">Let's check it out.</string>
<string id="3605">Look, Sonic! The robot's head looks like another Eggman device. Hm. I think I have all I need to... Yes!</string>
<string id="3606">These fit together like so... and you clip this here... and connect this... Yay!</string>
<string id="3607">The devices come together to form some kind of random pattern generator. I'm not sure what it's for.</string>
<string id="3609">We'd better keep looking for Eggman. Let's go.</string>
<string id="3611">Look, Sonic! The robot's head is another Eggman device. It must be old if it's forgotten its programming!</string>
<string id="3612">Look, Sonic. The robot's head... it's an Eggman device!</string>
<string id="3613">That must be what our tracker detected!</string>
<string id="3614">Hm. I can't tell what it's used for. Maybe I can examine it some other time. </string>
<string id="3770">Papa!</string>
<string id="3771">Oh, son! We were so worried!</string>
<string id="3772">Who are your friends?</string>
<string id="3773">Papa, this is Sonic the Hedgehog, and these are his friends!</string>
<string id="3774">Thank you ever so much for finding my boy. How can I ever repay you?</string>
<string id="3775">Ah, yes! Take this!</string>
<string id="3776">It's not much; just a token of my thanks for returning my precious boy!</string>
<string id="3777">It was our pleasure, sir.</string>
<string id="3778">Now, son, let's get you inside! Your mother will want to ground you, of course.</string>
<string id="3779">But Papa....</string>
<string id="3780">I live in Central City, so it's not too far away. </string>
<string id="3781">Really?! I get to travel with Sonic the Hedgehog?!</string>
<string id="3782">Wow, my friends will never believe this!</string>
<string id="3783">I won't make a peep! I promise!</string>
<string id="3784">I will! I promise!</string>
<string id="3785">I don't know. I just thought it looked cool.</string>
<string id="3786">I live in Emerald Town. My family must be very worried!</string>
<string id="3787">Everyone's heard of you, Sonic! You're a hero!</string>
<string id="3798">We'll take you there. Come with us. </string>
<string id="3802">Well, be careful getting home, okay?</string>
<string id="3804">Do you know what it does?</string>
<string id="3817">There's that well. I bet Timmy's still down there!</string>
<string id="3818">There's a well! I wonder if that's the one Timmy fell into.</string>
<string id="3829">Ha! That's what you get for crossing GUN, robot scum!</string>
<string id="3830">Thanks, Sonic, er, we can handle it from here. GUN appreciates your cooperation.</string>
<string id="3831">Here is your reward for helping me in this mission. We'll be in touch if we need your help again!</string>
<string id="3832">Take care, Sonic. And, er, stay out of trouble!</string>
<string id="3835">Shh. Those robots are probably listening in. They're tricky!</string>
<string id="3837">Hello again, Sonic. Be careful; that gang of robots is still at large. </string>
<string id="3838">No! Don't hurt me!</string>
<string id="3841">Really? You'd do that? Wow, thanks!</string>
<string id="3842">They have to be in Central City somewhere. If you find them, just wreck them for me!</string>
<string id="3843">Then, when you're all done, I'll come in and, er, make sure they're all down. Right.</string>
<string id="3844">Thanks, Sonic! This will be great!</string>
<string id="3845">Not so bad?! I was given an easy job, to round up some robot muggers. And I can't even do that right!</string>
<string id="3846">I'm just terrible at this. I should have been a janitor like my mom said.</string>
<string id="3847">Aww. Oh well. I guess I'm on my own.</string>
<string id="3851">Happy to help!</string>
<string id="3865">There, there. It's not so bad.</string>
<string id="3867">I'll shut those robots down.</string>
<string id="3868">I don't have time for this.</string>
<string id="3872">NEMESIS DETECTED. BEGIN COMBAT PROTOCOL.</string>
<string id="3873">These must be the robots the GUN soldier told us to find!</string>
<string id="3875">Let's smash 'em!</string>
<string id="3893">Please... I need help.</string>
<string id="3894">My name is Dr. Madden. I've been... looking for these... signal projectors... here in Green Hill Zone.</string>
<string id="3895">But I can't... ugh. Every time I try to find them... an animal attacks me.</string>
<string id="3896">Oh, that's... wonderful!</string>
<string id="3897">There are three signal projectors. If you see one... turn it off. That should make the animals... stop attacking.</string>
<string id="3898">Come back to me... when you're done. I... I'll be here.</string>
<string id="3899">Thank you so much. I just hope... it's not too late for the animals.</string>
<string id="3900">I will... I just need to rest. I should be safe here.</string>
<string id="3901">I noticed that the animals in Green Hill Zone were... acting strange, so I came to find out why.</string>
<string id="3902">Little did I know... I would be attacked! They... came out of nowhere!</string>
<string id="3903">But I think... I know what's wrong. Someone is... sending a signal, controlling the animals!</string>
<string id="3904">If I could find the signal projectors... I could stop the signal!</string>
<string id="3905">I believe so... yes. Ugh. Someone with powerful... technology. Like I've never seen before.</string>
<string id="3906">Everyone has. It's a terrible shame. </string>
<string id="3910">I'll help you find them!</string>
<string id="3913">We'll be back in no time!</string>
<string id="3915">Will you be okay here?</string>
<string id="3916">Why are you looking for them?</string>
<string id="3921">Someone is controlling the animals?</string>
<string id="3922">We'll help you find the signal projectors.</string>
<string id="3923">We've had trouble with the animals here, too. </string>
<string id="3924">We'd like to help you. </string>
<string id="3925">Why are you looking for the projectors?</string>
<string id="3928">Please... find the projectors, and shut them down!</string>
<string id="3929">Hello again....</string>
<string id="3930">Of... of course.</string>
<string id="3931">Sorry, we'll be going now.</string>
<string id="3933">That's the last of them! The animals should stop attacking people now!</string>
<string id="3934">Let's go tell Dr. Madden!</string>
<string id="3936">Sonic! This must be one of the projectors Dr. Madden was talking about!</string>
<string id="3937">Let's shut it down!</string>
<string id="3943">You did it! I knew it!</string>
<string id="3944">An armadillo walked over to me, and it didn't attack! It was brilliant!</string>
<string id="3946">Please take this. I brought supplies for my time out here, but thanks to you, I don't need them.</string>
<string id="3947">I... I can make my own way home. Thank you so much for your help.</string>
<string id="3948">I don't know for sure, but I have my suspicions.</string>
<string id="3949">If you ask me, it's those blasted Marauders! They've been causing trouble all over.</string>
<string id="3950">I think they were using the animals to do their bidding. That's why they attacked me!</string>
<string id="3951">Oh, I plan to... but I'm so excited, I feel great!</string>
<string id="3953">It was our pleasure.</string>
<string id="3957">Do you know who was controlling the animals?</string>
<string id="3961">Now, go get some medical help, mister!</string>
<string id="3963">Help! Please!</string>
<string id="3964">Oh, please, you must help me. We were attacked by Marauders! I barely escaped!</string>
<string id="3965">I must get back to GUN Headquarters! Please!</string>
<string id="3966">Thank you thank you thank you!</string>
<string id="3967">If you could escort me as far as Station Square, I would be most grateful.</string>
<string id="3968">I am an inspector with GUN, sent here to investigate rumors that the Marauders have taken Metropolis.</string>
<string id="3969">Not long after we got here, though, we were attacked! </string>
<string id="3970">I came here with a team of soldiers, but when we were attacked....</string>
<string id="3971">I ran, okay? I got scared and ran away! That's right! Everyone laugh at the coward!</string>
<string id="3972">Heh. Coward.</string>
<string id="3973">But I really must get back. If this isn't evidence of the Marauders, I don't know what is!</string>
<string id="3974">Hee hee hee! </string>
<string id="3975">What? How come no one's laughing?</string>
<string id="3976">Please! I beg you!</string>
<string id="3979">Sure. Come with us.</string>
<string id="3982">What are you doing out here? </string>
<string id="3984">I see. Come with us, we'll help.</string>
<string id="3985">Why do you keep saying "we"?</string>
<string id="3991">Sorry. We're on an important mission.</string>
<string id="3993">Finally! I'm saved!</string>
<string id="3995">You are a national hero, Sonic. A paragon of virtue!</string>
<string id="3996">No doubt you will be commended with medals and trophies and piles and piles of cash for saving my life!</string>
<string id="3998">Now, I must be off! Farewell, Sonic!</string>
<string id="3999">Ha ha ha ha ha! Ha ha ha ha ha!</string>
<string id="4000">What? That was funny!</string>
<string id="4001">Hardly worth the time spent to save him.</string>
<string id="4003">Let's get back to work, team!</string>
<string id="4007">Happy to help!</string>
<string id="4015">You did it! I'm so relieved.</string>
<string id="4017">Sonic! Help! I just realized that when I left work at the factory last night, I forgot to shut off the breakers.</string>
<string id="4018">When the foreman switches on the main power today, it will blow out the grid!</string>
<string id="4021">Oh, man. I am in big trouble now!</string>
<string id="4022">What can I say? I'm absentminded. What were we just talking about?</string>
<string id="4023">Right. It's just north of here. I don't think there's anything that will slow you down...</string>
<string id="4024">But I don't really remember.</string>
<string id="4025">What are you still doing here?</string>
<string id="4028">Don't worry, we'll take care of this!</string>
<string id="4030">I'm sorry. I don't have time to help you.</string>
<string id="4032">You sound completely incompetent!</string>
<string id="4033">I'll take care of this.</string>
<string id="4034">Quick! Where's the factory?</string>
<string id="4037">You aren't authorized to be here!</string>
<string id="4039">I'll go reset the breakers before turning on main power.</string>
<string id="4052">Thanks to you, I won't lose my job when I go in to work!</string>
<string id="4053">Here. Take this. I was going to bribe my boss with it, but I don't really need it now.</string>
<string id="4054">I'd better get to work before I'm fired for being late!</string>
<string id="4055">Oh, great! You are a life saver!</string>
<string id="4056">Come back and let me know how it went, okay?</string>
<string id="4057">And please hurry!</string>
<string id="4069">It was my pleasure!</string>
<string id="4073">Why not?</string>
<string id="4074">If you pull the switch, you'll blow up the whole factory!</string>
<string id="4075">What?! </string>
<string id="4076">Oh, for crying out loud. Did Johnson forget to close the breakers again?</string>
<string id="4077">I tell you, that man would forget his head if it wasn't attached to his body.</string>
<string id="4078">But you better believe that Johnson's getting a talking-to!</string>
<string id="4079">Really? Who!?</string>
<string id="4080">Oh no. I bet it was Johnson. He forgot to close the breakers again, didn't he?</string>
<string id="4081">Why? What's this all about?</string>
<string id="4088">Stop! Don't start the factory!</string>
<string id="4096">One of your workers asked us to stop you!</string>
<string id="4099">Oh, then go right ahead and pull the switch.</string>
<string id="4108">Ah. It's so nice without those wasps. </string>
<string id="4109">You did it! I think the wasps are gone!</string>
<string id="4110">Thank you so much. I guess I won't be needing this anymore! Take care, Sonic!</string>
<string id="4111">Please, find the queen! The wasps are everywhere!</string>
<string id="4112">Oh, it's you again. </string>
<string id="4113">Change your mind, did you?</string>
<string id="4114">No! They'll get me!</string>
<string id="4115">Help! Someone, help!</string>
<string id="4116">There are giant wasps all over the rooftops! They're attacking anyone who goes up there!</string>
<string id="4117">There must be a queen wasp up there somewhere. If someone were to defeat her, the wasps might go away.</string>
<string id="4118">Please hurry! They're everywhere!</string>
<string id="4119">Because I... well... because they're ROOFTOPS!</string>
<string id="4120">Everybody goes on the rooftops! What kind of question is that?</string>
<string id="4121">No! Please! They'll get me!</string>
<string id="4122">All in a day's work!</string>
<string id="4125">How do we get rid of the wasps?</string>
<string id="4126">No, not really.</string>
<string id="4128">How can we help?</string>
<string id="4131">Why would you go on the rooftops?</string>
<string id="4133">Sorry, we're too busy to help. </string>
<string id="4175">Is everyone okay?</string>
<string id="4176">A little... shaken up... but we're here.</string>
<string id="4177">What happened?</string>
<string id="4178">Ix got away. He took the Master Emerald.</string>
<string id="4179">Without the Emerald, Angel Island fell. We've lost.</string>
<string id="4180">Ix has won.</string>
<string id="4181">We can't give up! We have to....</string>
<string id="4183">Look!</string>
<string id="4185">Lord Ix's plan. It has begun.</string>
<string id="4186">And there's nothing we can do to stop it.</string>
<string id="4202">I have been imprisoned in the Twilight Cage for too long! Soon I will break free and shake the foundation of the universe!</string>
<string id="4206">Ix has taken the Master Emerald back inside the Twilight Cage.</string>
<string id="4207">Your world is lost.</string>
<string id="4208">I hope you are right. </string>
<string id="4209">Hm. A wormhole in the sky, directly above Metropolis....</string>
<string id="4210">My lab filled with old starship parts, just waiting to be put to good use....</string>
<string id="4211">Are you thinking what I'm thinking?</string>
<string id="4212">Oh, most certainly!</string>
<string id="4213">Oh please. This isn't the time for nerd bonding.</string>
<string id="4215">Well, being the utterly unparalleled genius I am, I happen to have set aside rocket parts for just this sort of occasion.</string>
<string id="4216">I've designed them to be simple enough that even Tails here could help me put them together!</string>
<string id="4217">And this will work for sure?</string>
<string id="4218">Absolutely! I even have a Dimensional Buffer stored away! Perfect!</string>
<string id="4219">Of course! It should be simple.</string>
<string id="4220">There is the small matter that a massive floating island crashed into my city, knocking out my power grid!</string>
<string id="4221">My lovely, beautiful power grid!</string>
<string id="4222">So even if we got all the parts for the ship, we couldn't put it together without power.</string>
<string id="4223">Oh, and it seems the crash has broken open my Hazard Vault. </string>
<string id="4224">So, I wouldn't worry too much, but it's likely that mad robots are running amuck as we speak.</string>
<string id="4225">Oh. Is that all?</string>
<string id="4226">Sonic, Eggman and I will go to his lab and start gathering parts. </string>
<string id="4227">If you can get the power grid back up, we can get the spaceship up and ready in no time!</string>
<string id="4228">I will go with the hedgehog.</string>
<string id="4229">Yeah!</string>
<string id="4230">There are three generators that supply power to my lab. I'll mark them on your map.</string>
<string id="4231">If you can activate them all, then I...er, WE can get to work on that spaceship.</string>
<string id="4232">We will not fail.</string>
<string id="4233">....</string>
<string id="4234">Good luck, Sonic.</string>
<string id="4235">Oh, just some prototype robots, old machines I never used because they were too unpredictable. </string>
<string id="4236">Certainly Sonic the Hedgehog has nothing to fear from them!</string>
<string id="4237">I beg you for the chance to prove myself, my new friend.</string>
<string id="4238">When Ix cast me aside, I made up my mind to oppose him. I cannot trust him with my people. </string>
<string id="4239">I would never want my people to return at the expense of the people of this world. </string>
<string id="4241">Give her a shot, Sonic. I'll take responsibility if she turns on us.</string>
<string id="4245">Of course! After all the times I've tried to take over the world, you think I wouldn't have mere rocket parts around?</string>
<string id="4246">Ha! You know nothing of the true genius of Eggman!</string>
<string id="4247">Of course not! What challenge would there be, then?</string>
<string id="4248">Ix hoped to use their power to return our clan to this world. At least, that was what he told us. Now I know he is using my people for his own selfish ends.</string>
<string id="4252">Then the legends are true.</string>
<string id="4253">It would seem so, although I have never heard them.</string>
<string id="4254">The Nocturnus Clan of echidnas ruled much of the world some 4000 years ago. They were only rivaled by my ancestors, led by Pachacamac.</string>
<string id="4256">The Nocturnus Clan disappeared not long after Perfect Chaos nearly destroyed my people. We always thought Perfect Chaos destroyed them, too.</string>
<string id="4257">So now Ix has taken the Master Emerald as part of his plan to conquer the world.</string>
<string id="4258">I thought I was helping my people return from exile. I didn't know Lord Ix planned to conquer this world. I... I was blind.</string>
<string id="4260">I can't expect you to believe me. I just want a chance to get back at Lord Ix for using my people as a weapon.</string>
<string id="4262">We'll find a way to stop him.</string>
<string id="4268">What are you two going on about?</string>
<string id="4273">Then let's get that rocket built!</string>
<string id="4283">Then we have a plan. Let's get moving!</string>
<string id="4290">What was in the Hazard Vault?</string>
<string id="4292">I don't want to work with Shade.</string>
<string id="4300">You just happened to have these parts lying around?</string>
<string id="4302">Let's just get the rocket built.</string>
<string id="4303">It can't be this easy. </string>
<string id="4305">What is Ix up to? Why does he need the Emeralds?</string>
<string id="4311">We'll find a way to stop Ix.</string>
<string id="4312">What legends?</string>
<string id="4316">Why should we believe anything you say?</string>
<string id="4321">Finally. The last generator.</string>
<string id="4324">That ought to do it. Let's get back to Tails.</string>
<string id="4329">Tails, there goes the second generator.</string>
<string id="4335">Tails, we activated one of the generators.</string>
<string id="4368">Sonic! I heard something over your communicator! Is everything all right?</string>
<string id="4369">You are destined to face Lord Ix, Sonic. I could not watch you be defeated by a lowly robot.</string>
<string id="4370">Of course. </string>
<string id="4371">Shall we continue?</string>
<string id="4372">Sonic, we have power!</string>
<string id="4373">But there's a problem. Eggman's Dimensional Buffer is in the Hazard Vault. </string>
<string id="4374">Without that, the spaceship would never withstand the rigors of dimensional travel!</string>
<string id="4375">Then you would rather have died?</string>
<string id="4376">I didn't want to take that chance. </string>
<string id="4378">Thank you, Shade.</string>
<string id="4383">That was a stupid thing to do!</string>
<string id="4385">You don't think I could handle that shot?</string>
<string id="4393">You impress me, Sonic the Hedgehog.</string>
<string id="4394">I don't waste time with flattery. It's not easy to impress me. Thus far, only you and your echidna friend have done so. </string>
<string id="4395">I worked with Lord Ix for a very long time. He has led my people for as long as we can remember.</string>
<string id="4396">But faced with his wrath, you and your friends stand up against him. You risk everything in a desperate attempt to stop him.</string>
<string id="4398">I find that... inspiring.</string>
<string id="4399">She was acting under orders, Sonic. This isn't her fault.</string>
<string id="4400">No, he's right. I was blind, and now my people are stuck serving a vicious and cruel master.</string>
<string id="4401">I understand. With luck, I will get a chance to make up for my crimes.</string>
<string id="4402">We have a lot to do. Let's go.</string>
<string id="4403">He is. And as powerful as Lord Ix is alone, he is surrounded by advanced technology and the finest warriors of my clan.</string>
<string id="4404">We have a difficult fight ahead of us, Sonic. I go with you knowing that Ix will most likely kill me. </string>
<string id="4405">Not as long as I live.</string>
<string id="4406">Bravery worthy of Pachacamac's descendant. I am proud to work with you all. </string>
<string id="4407">Thank you. From you, that is a compliment.</string>
<string id="4408">And I would understand if we never were. But I give respect where it is due.</string>
<string id="4409">There's no time for flattery, Shade. </string>
<string id="4411">Why is that?</string>
<string id="4415">It's just what we do.</string>
<string id="4416">I consider all this to be your fault, Shade.</string>
<string id="4421">Is he really that powerful?</string>
<string id="4426">You're not so bad yourself.</string>
<string id="4428">We are not friends, Shade. </string>
<string id="4430">Ha ha ha ha! You *bzt* cannot...</string>
<string id="4431">Defeat... meeeeeeee *bzt*</string>
<string id="4432">You could have fooled me.</string>
<string id="4433">Come. We have the Dimensional Buffer. Let's go!</string>
<string id="4434">Ha ha ha ha ha! *bzt*</string>
<string id="4435">I am *bzt* free! Free to destroy!</string>
<string id="4436">*bzt* Destroy... you.... *bzt* Ha ha ha ha ha!</string>
<string id="4437">*bzt* A hedgehog in *bzt* running shoes. *bzt* Disgusting!</string>
<string id="4438">Ha ha ha ha ha!</string>
<string id="4439">*bzt* Beauty.... Genius.... *bzt* Perfect creation!</string>
<string id="4440">None... *bzt* in my way... *bzt* None *bzt* defeat me!</string>
<string id="4446">Let's take it down, team!</string>
<string id="4448">Ugh! A robot Eggman. Disgusting!</string>
<string id="4450">What in the world are you?</string>
<string id="4453">Great! Once we have the Dimensional Buffer, we can take off after Ix!</string>
<string id="4454">Eggman says he thinks most of the robots will have escaped already.</string>
<string id="4455">It should be a matter of just going in and getting the part!</string>
<string id="4456">I'm sure you can handle anything else that's in there!</string>
<string id="4457">We're not quite done getting the ship together. If you can get the last part, we can get all this done sooner.</string>
<string id="4458">Then we're on our way!</string>
<string id="4460">Anything we should be looking out for?</string>
<string id="4462">Why do I doubt it'll be that easy?</string>
<string id="4463">Why doesn't Eggman go get it himself?</string>
<string id="4464">This must be the Hazard Vault.</string>
<string id="4465">Let's go. The part we need is inside.</string>
<string id="4466">This should be easy enough. This place looks pretty empty.</string>
<string id="4470">Sonic! It's Tails! </string>
<string id="4471">Eggman says there may be a few more robots in the Hazard Vault!</string>
<string id="4475">He's apologizing. And laughing. But mostly apologizing.</string>
<string id="4476">Yeah, I know. Risk of working with an evil genius, I guess.</string>
<string id="4478">It's almost over, Sonic. Good luck!</string>
<string id="4489">Don't worry. We can handle it!</string>
<string id="4493">Eggman and his stupid robots!</string>
<string id="4530">Okay! I think we're all set to go!</string>
<string id="4531">We have a few minutes before the dimensional window cycles around.</string>
<string id="4532">Feel free to take a moment and talk to everyone if you like. </string>
<string id="4534">All right!</string>
<string id="4535">Everyone, we're leaving right now! Gather your things and get on the ship!</string>
<string id="4536">Good luck out there, now. Without my genius working for you, you're in for quite a fight!</string>
<string id="4537">Wait, Eggman. You're not going?</string>
<string id="4538">Oh, no. You'll need someone to help you with re-entry when you come back!</string>
<string id="4539">Inter-dimensional travel isn't like dusting crops, boy! You'll need someone of supreme intellect to guide you back in!</string>
<string id="4540">Oh no you don't, Sonic! You'll not insult me, not when I'm volunteering to--</string>
<string id="4541">Oh. Oh! My, did you just thank me?</string>
<string id="4542">Or, at least, a bigger head.</string>
<string id="4543">Finally, you appreciate my genius. Well, you're welcome.</string>
<string id="4544">Final boarding call for the Twilight Cage!</string>
<string id="4545">We're leaving. Everyone coming? </string>
<string id="4546">On our way!</string>
<string id="4548">Thanks for all your help, Eggman. I really mean it!</string>
<string id="4549">Aw, it was all you, my little friend! Now, go on!</string>
<string id="4550">Goodbye!</string>
<string id="4553">Sure. Take your time.</string>
<string id="4554">Come talk to me when you're ready to go.</string>
<string id="4556">Sonic! Are you okay?</string>
<string id="4557">We're fine. Just had to deal with one of Eggman's old friends.</string>
<string id="4558">He was such a handsome devil. *sniff*</string>
<string id="4559">We have the Dimensional Buffer now. We should be ready to go.</string>
<string id="4560">Great! Meet us in Eggman's lab, and we'll get everything ready!</string>
<string id="4561">Tails out!</string>
<string id="4565">There's no time to waste. Let's go!</string>
<string id="4571">That sounds fair. Thank you for your help, Eggman.</string>
<string id="4573">Don't get a big head about it</string>
<string id="4585">We could really use you out there. </string>
<string id="4586">Well, good riddance, I say.</string>
<string id="4587">I'm not sure we should trust him here all alone....</string>
<string id="4588">I'll only need a moment.</string>
<string id="4592">How do you feel about all this?</string>
<string id="4600">Hey Sonic! Are you ready to take off for the Twilight Cage?</string>
<string id="4601">Oh, no! Without someone of my brilliance here to guide you, there's no telling where you'll end up!</string>
<string id="4602">Besides, someone should be here in case Ix decides to come through while you're gone, no?</string>
<string id="4603">Oh, Sonic! Get in touch with your feelings, my boy! </string>
<string id="4604">You'll miss having me to match wits with, I promise you!</string>
<string id="4605">Ha ha ha ha ha!</string>
<string id="4606">Come now, Sonic. What could I possibly get up to here? </string>
<string id="4607">My city is in ruins, my machines destroyed. I am a broken man, left only with the finest mind the world has ever known!</string>
<string id="4608">Go. Go without worry, my blue friend! Ha ha ha ha ha!</string>
<string id="4609">It feels odd to say this, but I'm excited! We're going to another world! Sure we might not escape, but....</string>
<string id="4611">Besides, we have to do this. We can't just let Ix have the Chaos Emeralds!</string>
<string id="4612">Not much. Just that Shade's clan came from there. She ought to know more than I do.</string>
<string id="4614">Yes. Let's go.</string>
<string id="4615">I need a little more time.</string>
<string id="4625">You're right. Let's go.</string>
<string id="4626">I'll be ready to go soon. </string>
<string id="4627">Do you know anything about the Twilight Cage?</string>
<string id="4629">I think it's time to get going.</string>
<string id="4672">What is this place?</string>
<string id="4673">I don't know. Looks like some kind of rock planet.</string>
<string id="4674">This is the home colony of the Kron. They are allies of Lord Ix.</string>
<string id="4675">Sonic, we have a problem. The ship landed all right, but we're completely out of power, and I think the Dimensional Buffer is shot.</string>
<string id="4676">Are you saying we're stranded here? </string>
<string id="4677">Well, not exactly. If we can find one of the Chaos Emeralds, we can use it to power the Cyclone.</string>
<string id="4679">Right! We should explore this place, and see what we can find.</string>
<string id="4681">Hm. I think the Kron might have a different idea.</string>
<string id="4682">Get ready, team!</string>
<string id="4683">Next to nothing. It seems to be made of rock and metal, but I can't tell much else. </string>
<string id="4684">There does seem to be a Chaos Emerald here. That should be enough to power the Cyclone.</string>
<string id="4685">Lord Ix must have planted one of the Chaos Emeralds here. Maybe he didn't want to keep them all in one place. </string>
<string id="4687">Well, we came here for a Chaos Emerald. Let's not waste our time talking.</string>
<string id="4688">They are a race of miners and builders. The finest in all of the Twilight Cage.</string>
<string id="4689">Lord Ix uses them to build his armor, weapons, and other machines.</string>
<string id="4690">They are strong and persistent. Very dangerous in a fight. </string>
<string id="4691">You must understand. Lord Ix rules this place. Those who wouldn't work with him, he destroyed. </string>
<string id="4692">That's a nice thought, but I wouldn't hold my breath. </string>
<string id="4695">Then they're enemies of Sonic the Hedgehog.</string>
<string id="4699">Then let's go get it!</string>
<string id="4704">Do you know anything about this place?</string>
<string id="4706">That's awfully convenient.</string>
<string id="4710">Shade, what do you know about the Kron?</string>
<string id="4713">They haven't fought us yet.</string>
<string id="4714">Why would they work for Ix?</string>
<string id="4715">Then maybe we can turn them against him.</string>
<string id="4721">Knuckles is missing! He was kidnapped by the Marauders, a gang of criminals who have been stealing the Chaos Emeralds!
Sonic must find Amy Rose and go with her to Tails' Workshop in Central City, just south of Green Hill Zone.</string>
<string id="4722">Hostile Reception</string>
<string id="4729">Help the woodsman by chopping some wood.
An elderly woodsman asked Sonic for his help. The poor man has been out chopping wood all day, and he's getting tired! If Sonic would just chop one piece of wood, the woodsman would be eternally grateful!</string>
<string id="4730">Sonic took a moment out of his busy schedule to chop a little wood and help out the poor old woodsman. What a nice guy!</string>
<string id="4731">Speak with the woodsman for a reward.
Sonic raised the axe and chopped a piece of wood neatly in half. All that remains is to speak with the nearby woodsman about a job well done!</string>
<string id="4732">The Tired Old Woodsman</string>
<string id="4744">Knuckles is missing! He was kidnapped by the Marauders, a gang of criminals who have been stealing the Chaos Emeralds!
Amy Rose and Sonic must get to Tails' Workshop in Central City, just south of Green Hill Zone.</string>
<string id="4748">Knuckles is missing! He was kidnapped by the Marauders, a gang of criminals who have been stealing the Chaos Emeralds!
Sonic and Amy Rose have arrived in Central City. Now they must go see Tails in his Workshop.</string>
<string id="4750">Knuckles is missing! He was kidnapped by the Marauders, a gang of criminals who have been stealing the Chaos Emeralds!
Sonic and Amy found Tails! Tails contacted GUN, the Guardian Unit of Nations, for help in finding Knuckles. Sonic, Amy, and Tails must go speak to GUN Commander and see what can be done to find Knuckles.
Speak to Tails when you're ready to go!</string>
<string id="4751">Knuckles is missing! He was kidnapped by the Marauders, a gang of criminals who have been stealing the Chaos Emeralds!
Tails contacted GUN, the Guardian Unit of Nations, for help in finding Knuckles. Sonic, Amy, and Tails must go speak to GUN Commander and see what can be done to find Knuckles.</string>
<string id="4755">Could Eggman really be back? Could he be behind Knuckles' disappearance?
Sonic thought he had defeated Eggman in their last battle, but the robots that attacked sure looked like Eggman's minions... old and worn-out they may have been.
GUN Commander would love to hear about this. Go to Central City and speak with him.</string>
<string id="4760">Knuckles is missing! He was kidnapped by the Marauders, a gang of criminals who have been stealing the Chaos Emeralds!
Sonic and Amy Rose have arrived in Central City. They met up with Rouge, who said that she wouldn't take them to GUN Headquarters without Tails. Now Sonic and Amy must go find Tails in his workshop.</string>
<string id="4763">Knuckles is missing! He was kidnapped by the Marauders, a gang of criminals who have been stealing the Chaos Emeralds!
Sonic, Tails, and Amy met up with Rouge, who was waiting to take them to the GUN Headquarters to speak with GUN Commander.</string>
<string id="4764">Are we really going to fly in that? It doesn't look safe.</string>
<string id="4765">I'm-- I'm not afraid to fly, Sonic! I just don't think that plane looks up to code, is all.</string>
<string id="4766">If you're there with me, I know I'll be all right. We can handle it together.</string>
<string id="4767">I can't wait to meet up with those Marauders. I'll show them a thing or two!</string>
<string id="4768">Dexter? Oh, yes. He won't mind. He wouldn't want me riding in a dangerous airplane without an escort, you see.</string>
<string id="4772">Oh, yes, all the time. His plane is magnificent!</string>
<string id="4775">Hmph! Why would I do that? Ha ha ha! That makes no sense, Sonic!</string>
<string id="4776">You're so funny. But not as funny as my Dexter!</string>
<string id="4777">Oh, I'm just fine! Why wouldn't I be?</string>
<string id="4784">Yes, we're going soon. Be ready.</string>
<string id="4785">Are you afraid to fly? Since when?</string>
<string id="4787">Good. We're leaving soon. Be ready.</string>
<string id="4789">What about Dexter?</string>
<string id="4793">We're leaving soon. Be ready.</string>
<string id="4794">Doesn't Dexter take you flying sometimes?</string>
<string id="4797">Now I -know- you're making him up.</string>
<string id="4799">How are you doing, Amy?</string>
<string id="4816">Was that...?</string>
<string id="4817">That animal seemed to be... roboticized.</string>
<string id="4818">Oh no! Poor thing!</string>
<string id="4819">Looks like we were right about Eggman being involved.</string>
<string id="4820">But the animals... oh no!</string>
<string id="4821">It's okay, Cream. We will find Eggman and stop him.</string>
<string id="4822">The signal doesn't stop here, Sonic. We have to keep following it to find the source.</string>
<string id="4823">Then let's go. Eggman will pay for this.</string>
<string id="4824">I don't understand. How could Angel Island move away?</string>
<string id="4825">How can Angel Island float?</string>
<string id="4826">Point taken, smarty.</string>
<string id="4828">But how can we stop him? We don't even know where he is!</string>
<string id="4829">I think I can help with that!</string>
<string id="4831">These communicators we found are old Eggman technology. They were made only to respond to a special frequency that Eggman used.</string>
<string id="4832">If I can rewire them once again, maybe we can reverse them and use them to detect that frequency!</string>
<string id="4833">So we could use them to find Eggman!</string>
<string id="4835">This is a waste of time.</string>
<string id="4837">If Eggman has all of the Chaos Emeralds, he won't stop there. He'll go after the Master Emerald. On Angel Island.</string>
<string id="4838">If Eggman's going to Angel Island, then so should we.</string>
<string id="4839">Right! In the meantime, everyone rest up. We have to be ready to fight if we're going after Eggman.</string>
<string id="4841">Sonic, just head outside when you're ready to go. It won't take me long to rewire the communicators!</string>
<string id="4842">It should. The communicators are already made to detect Eggman's electronic signature.</string>
<string id="4843">It's a simple matter to rewire them so they'll alert us when we get close.</string>
<string id="4844">That would be good news, wouldn't it?</string>
<string id="4845">Besides, even if he isn't, we know his machines are. If we find more of his robots, we might learn more about what's going on.</string>
<string id="4846">But... I....</string>
<string id="4847">When we defeated Eggman the last time, it looked like he was gone for good.</string>
<string id="4849">I don't think he could have recovered that much in so short a time.</string>
<string id="4850">Then he'll be easier to defeat this time.</string>
<string id="4853">Hey, if Eggman has the seven Chaos Emeralds, I say we go get him now. </string>
<string id="4854">He's bound to have something shiny we can... rescue.</string>
<string id="4855">I have an idea!</string>
<string id="4857">....</string>
<string id="4858">....</string>
<string id="4859">Er.... Group hug?</string>
<string id="4870">This has to be Eggman's doing. We have to stop him.</string>
<string id="4873">Have you found something?</string>
<string id="4882">Build the tracker, Tails. We need to find Eggman now.</string>
<string id="4886">Do you think this tracker will work, Tails?</string>
<string id="4888">Then let's build it. We have to stop Eggman.</string>
<string id="4889">But what if Eggman isn't out there?</string>
<string id="4891">I agree with Knuckles. We should go to Angel Island.</string>
<string id="4910">GUN Commander gave Sonic a map showing the locations of four Eggman hideouts. Sonic must check out each hideout and figure out where the Marauders are holding Knuckles!</string>
<string id="4911">GUN Commander gave Sonic a map showing the locations of four Eggman hideouts. The team found the first hideout. Now they must search inside for Knuckles!</string>
<string id="4912">The Search for Knuckles</string>
<string id="4913">I'm ready when you are, Sonic.</string>
<string id="4914">Ugh. It's called "a shower", people. You might want to look into it.</string>
<string id="4915">That's not us, Rouge. It's...</string>
<string id="4916">It's coming from over there! Look!</string>
<string id="4917">Some kind of gas cloud. I wonder where it came from.</string>
<string id="4918">Ugh. That stuff smells horrible!</string>
<string id="4919">It's not just stinky; that gas might be deadly!</string>
<string id="4920">Maybe there's a way around. I....</string>
<string id="4922">What's that?</string>
<string id="4923">I don't know, but it's coming from the cloud!</string>
<string id="4924">Ready to fight, team!</string>
<string id="4927">I'll be ready, darlin'. Don't you worry about me. </string>
<string id="4928">Hey, Big Blue. Whatcha need?</string>
<string id="4929">I'll be ready, darlin'. Don't you worry about me. </string>
<string id="4930">I'm fine. Ready as I'll ever be.</string>
<string id="4931">There had better be something shiny in this place we're going. Knuckles is cute, but he's not much of a reward.</string>
<string id="4932">Boy, you sure are good at detecting sarcasm, aren't you?</string>
<string id="4947">We're leaving soon. Be ready.</string>
<string id="4948">How are you, Rouge?</string>
<string id="4950">You think Knuckles is cute?</string>
<string id="4953">Whew. Sorry about the bumpy landing, team. This fog is so thick, I can hardly see to land!</string>
<string id="4954">Mystic Ruins? More like "Soggy Ruins," if you ask me. Ew.</string>
<string id="4955">The ruins should be to the east. Let's go find Knuckles!</string>
<string id="4956">Ready to go save Knuckles?</string>
<string id="4957">The Tornado's right outside. Head out there and interact with the plane when you're ready to travel!</string>
<string id="4962">I had hoped to get by without her. She's not really up to spec.</string>
<string id="4963">But it looks like we have no choice but to take the Tornado out for a spin!</string>
<string id="4964">It'll get us there. I'm just not sure it'll get us back.</string>
<string id="4965">I'll need some time to adjust the flaps, if you want to rest a moment. </string>
<string id="4967">I had to use some of her parts for the trap I built for Knuckles. Those parts were destroyed when the trap blew up.</string>
<string id="4968">She should fly all right, but I wouldn't go too far with her. Not without some serious work on her stabilizers!</string>
<string id="4969">I can't be sure but, I can hope.</string>
<string id="4970">If the signal leads to a headquarters, then we'll probably find Knuckles there. </string>
<string id="4971">If not, well, I hope we can get some clue that will help us find him!</string>
<string id="4972">Right!</string>
<string id="4973">Hey Sonic! Got something! Another communicator!</string>
<string id="4974">And still no Knuckles!</string>
<string id="4975">I think I... Yes! I've got it!</string>
<string id="4979">I've rewired the communicators and.... There! I've got the source of the signal!</string>
<string id="4980">It's there! In the Mystic Ruins!</string>
<string id="4981">That must be where they're keeping Knuckles!</string>
<string id="4982">I bet it's another wild goose chase. Count me out.</string>
<string id="4983">Fine. You twisted my arm.</string>
<string id="4984">Let's hurry! The Mystic Ruins are just south of Central City. We'll get there if we follow the road.</string>
<string id="4985">Let's go!</string>
<string id="4986">Then we'll have to go back to GUN and see if they know anything else.</string>
<string id="4987">I really hope that doesn't happen. I don't trust GUN.</string>
<string id="4988">Er, no offense, Rouge. </string>
<string id="4989">No, that's fair.</string>
<string id="4990">Er... what? The Chaos Emeralds?</string>
<string id="4991">Ah, yes. Let's get moving, then! Knuckles could be in trouble, you know! No time to lose!</string>
<string id="4992">Hey Sonic! Look!</string>
<string id="4993">Another communicator! Almost enough to build the signal tracker!</string>
<string id="4994">Where could they be keeping Knuckles? Could there be somewhere else that GUN couldn't find?</string>
<string id="4995">Let's keep looking and find out!</string>
<string id="4996">Another communicator. And it's broken, too. </string>
<string id="4997">You know, Sonic, if we found more of these, I might be able to rewire them and use them to trace the source of the signal.</string>
<string id="4998">With that, we might be able to find the Marauders' headquarters, where they're probably keeping Knuckles.</string>
<string id="4999">Well, he's not here. And all we're finding are stupid walkie-talkies. </string>
<string id="5000">We'll find him. I know it!</string>
<string id="5001">Let's keep moving.</string>
<string id="5002">I found some sort of device. I think it's a communicator!</string>
<string id="5004">Hm. It seems broken. But maybe if we had more parts, I could get it working.</string>
<string id="5005">Knuckles isn't here. He must be in one of the other hideouts.</string>
<string id="5006">Let's go!</string>
<string id="5007">Hey, team! Look!</string>
<string id="5008">This is the last of the hideouts. Maybe we'll find Knuckles inside!</string>
<string id="5009">Another hideout! Let's look around!</string>
<string id="5010">Another hideout! Let's look around!</string>
<string id="5011">Here's one of the hideouts we're supposed to explore.</string>
<string id="5012">It looks abandoned! There's no one here!</string>
<string id="5013">Looks can be deceiving, Pinky. There could be something valuable in there.</string>
<string id="5014">You mean like Knuckles?</string>
<string id="5015">Mmm. Right. Like Knuckles.</string>
<string id="5026">If it'll help us save Knuckles, it's good enough for me.</string>
<string id="5030">Why haven't we been using the Tornado all along?</string>
<string id="5032">Are you sure we're looking for Knuckles in the right place?</string>
<string id="5035">Then get the Tornado ready so we can save Knuckles.</string>
<string id="5045">You're probably right.</string>
<string id="5046">Let's just go check it out.</string>
<string id="5050">And what if he's not there?</string>
<string id="5055">Maybe that's where they're keeping the Chaos Emeralds, too.</string>
<string id="5077">Amy!!!</string>
<string id="5078">Ugh! No hugs, Big. Not while you smell like that.</string>
<string id="5079">What are you doing here, Big?</string>
<string id="5080">Uh, I was just fishing in the lake over there, and I thought I heard my friend Amy Rose!</string>
<string id="5081">I was so happy I splashed through the lake and came over here, and there she was! Amy Rose!</string>
<string id="5082">How did you get through that gas, Big? It seems very dangerous!</string>
<string id="5083">Oh, that? That's the sneezy fog! It makes me sneeze.</string>
<string id="5084">Ah-ah-ah... ah-CHOO!</string>
<string id="5085">Ugh. I'd almost rather stand in the fog.</string>
<string id="5086">Sonic, Big is an old friend of mine. I think we should bring him along!</string>
<string id="5087">Yay! I go with Amy Rose!</string>
<string id="5088">Now we just need to get through that fog.</string>
<string id="5089">Big can help with that!</string>
<string id="5091">Let's go!</string>
<string id="5092">Poison gas?! Oh no! Where?</string>
<string id="5094">I think maybe it just doesn't affect him, Sonic. Big is pretty tough.</string>
<string id="5095">Maybe he can help us get past this gas and into the ruins!</string>
<string id="5096">Definitely. He's just the sweetest!</string>
<string id="5097">Sure! If he can survive the gas, maybe he can get us through it!</string>
<string id="5098">Hmph. The more the merrier, I always say.</string>
<string id="5108">It can't hurt anything, I guess.</string>
<string id="5114">How did you survive the poison gas, Big?</string>
<string id="5118">Does everyone think Big should come with us?</string>
<string id="5121">Then come with us, Big. We could use your help.</string>
<string id="5122">Why, I'll let you have it if you bring me that stapler! It belonged to my sainted mother, rest her soul.</string>
<string id="5124">Why are we standing here? We should be off finding Eggman.</string>
<string id="5125">I can't believe Eggman might really be back!</string>
<string id="5126">We keep beating him up, and he keeps returning. I wonder if it'll ever end!</string>
<string id="5216">All right! Everyone, gather around!</string>
<string id="5217">This tracker won't lead us right to Eggman, but it will beep when we get near him!</string>
<string id="5218">We'll have to travel all over. When the tracker starts beeping, we'll know we're close.</string>
<string id="5219">I've tuned it to Eggman's electronic signature, so any Eggman device that's out there might make it beep.</string>
<string id="5220">Those things might be clues, so we should check out anything that makes the tracker beep!</string>
<string id="5221">Look out, Eggman! We're coming for you!</string>
<string id="5222">Eggman could be anywhere! We should search Green Hill Zone, Central City, and Mystic Ruins.</string>
<string id="5223">Any time the tracker beeps, we should look around. It could be Eggman!</string>
<string id="5224">Right! He should be pretty weak, but even a weak Eggman is dangerous!</string>
<string id="5322">Good. Let's go!</string>
<string id="5324">So, where should we look?</string>