-
Notifications
You must be signed in to change notification settings - Fork 1
/
doctor-who.xml
5843 lines (5839 loc) · 160 KB
/
doctor-who.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"?>
<?xml-stylesheet href="http://www.amk.ca/qel/qel.css"?>
<quotations
xmlns="http://www.amk.ca/qel/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#">
<title>Quotations from Classic Doctor Who</title>
<editor>A.M. Kuchling</editor>
<quotation id="q1">
<p>
She lets her knowledge out a bit at a time, so as not to
embarrass me.
</p>
<source>Ian, talking about Susan, in "An Unearthly Child"</source>
</quotation>
<quotation id="q2">
<p>
Don't you think you're being rather high-handed, young man? You
thought you saw a young girl enter the yard, you imagine you heard her
voice, you believe she might be in there. Not very substantial, is it?
</p>
<source>The Doctor, to Ian, in "An Unearthly Child"</source>
</quotation>
<quotation id="q3">
<p>
I tolerate this century but I don't enjoy it.
</p>
<source>The Doctor, in "An Unearthly Child"</source>
</quotation>
<quotation id="q4">
<p>
Have you ever thought what it's like, to be wanderers in the
fourth dimension? Have you? To be exiles?
</p>
<source>The Doctor, in "An Unearthly Child"</source>
</quotation>
<quotation id="q5">
<p>
Your arrogance is nearly as great as your ignorance.
</p>
<source>The Doctor, to Ian, in "An Unearthly Child"</source>
</quotation>
<quotation id="q6">
<p>
There is no indignity in being afraid to die, but there is a
terrible shame in being afraid to live.
</p>
<source>Alydon, in "The Daleks"</source>
</quotation>
<quotation id="q7">
<p>
I'm afraid we have no time for codes and manners.
</p>
<source>The Doctor, in "The Edge of Destruction"</source>
</quotation>
<quotation id="q8">
<p>
A rash action is worse than no action at all.
</p>
<source>The Doctor, in "The Edge of Destruction"</source>
</quotation>
<quotation id="q9">
<p>
"Frankly Doctor, I find it hard to keep pace with you."
</p>
<p>
"You mean 'to keep one jump ahead'; that you will never be!"
</p>
<source>Ian and the Doctor, in "The Edge of Destruction"</source>
</quotation>
<quotation id="q10">
<p>
It was your instincts and intuition against my logic, and you
succeeded.
</p>
<source>The Doctor, to Barbara, in "The Edge of Destruction"</source>
</quotation>
<quotation id="q11">
<p>
"You know, I acquired that ulster from Gilbert and Sullivan."
</p>
<p>
"Oh, really? I thought it was made for two."
</p>
<source>The Doctor and Ian, in "The Edge of Destruction"</source>
</quotation>
<quotation id="q12">
<p>
"Perhaps it's frozen."
</p>
<p>
"No, impossible... not in this temperature. Besides, it's too
warm."
</p>
<source>Barbara and the Doctor, in "The Keys of Marinus"</source>
</quotation>
<quotation id="q13">
<p>
"What's that awful noise?"
</p>
<p>
"I beg your pardon... 'Awful noise'? A good way to talk about my
singing!"
</p>
<p>
"No, Doctor, not that awful noise -- the other one!"
</p>
<source>Barbara and the Doctor, in "The Chase"</source>
</quotation>
<quotation id="q14">
<p>
"Where's your spirit of adventure, hm?"
</p>
<p>
"It died a slow and painful death when those bats came out of
the rafters."
</p>
<source>The Doctor and Ian, in "The Chase"</source>
</quotation>
<quotation id="q15">
<p>
You know, I am so constantly outwitting the opposition, I tend
to forget the delight and satisfaction of the arts... the gentle art
of fisticuffs.
</p>
<source>The Doctor, in "The Romans"</source>
</quotation>
<quotation id="q16">
<p>
One day I shall come back. Yes, I shall come back. Until then,
there must be no regrets, no tears, no anxieties. Just go forward in
all your beliefs, and prove to me that I am not mistaken in mine.
Goodbye, Susan.
</p>
<source>The Doctor, in "The Dalek Invasion of Earth"</source>
</quotation>
<quotation id="q17">
<p>
That is the dematerializing control. And that, over yonder, is
the horizontal hold. Up there is the scanner, those are the doors,
that is a chair with a panda on it. Sheer poetry, dear boy. Now please
stop bothering me.
</p>
<source>The Doctor, in "The Time Meddler"</source>
</quotation>
<quotation id="q18">
<p>
"What do you think of that, now, eh? A Viking helmet."
</p>
<p>
"Maybe."
</p>
<p>
"What do you mean, 'maybe'? What do you think it is, a space
helmet for a cow?"
</p>
<source>The Doctor and Steven, in "The Time Meddler"</source>
</quotation>
<quotation id="q19">
<p>
"Why do you suppose they're fighting?"
</p>
<p>
"I haven't the remotest idea, my boy. No doubt their reasons
will be entirely adequate."
</p>
<source>Steven and the Doctor, in "The Myth Makers"</source>
</quotation>
<quotation id="q20">
<p>
Who am I to fear the thunder, you superstitious dark dodging
decadent?
</p>
<source>Hector, in "The Myth Makers"</source>
</quotation>
<quotation id="q21">
<p>
"How <em>dare</em> you? I am high priestess of Troy!"
</p>
<p>
"All right, then, get back to your temple before you give us all
galloping religious mania!"
</p>
<source>Cassandra and Paris, in "The Myth Makers"</source>
</quotation>
<quotation id="q22">
<p>
"You see, I'm treated with more respect by the enemy than I am
by my own family."
</p>
<p>
"They don't know you as well as we do."
</p>
<source>Paris and Cassandra, in "The Myth Makers"</source>
</quotation>
<quotation><p>"It must be about the year 2050, Ben"
</p><p>
"We've got a proper Rip van Winkle here. <general laughter>
It's 2070, in case you'd like to know."
</p><p>
"There you are. I was only 20 years out."
</p><p>
"Well, before we all forget what century we're in, I'd better tell you why I've called you here."
</p>
<source>The Doctor and Hobson, in "The Moonbase"</source>
</quotation>
<quotation><p>There are some corners of the universe which have
bred the most terrible things. Things which act against everything
that we believe in. They must be fought.
</p>
<source>The Doctor, in "The Moonbase"</source>
</quotation>
<quotation><p>
"You will now take us to the control center."
</p><p>
"I'll be damned if..." <is surrounded by Cybermen> "It's through here."
</p>
<source>A Cyberman and Hobson, in "The Moonbase"</source>
</quotation>
<quotation id="q23">
<p>
"How do you know?"
</p>
<p>
"I don't know, I'm guessing."
</p>
<source>Jamie and the Doctor, in "The Macra Terror"</source>
</quotation>
<quotation id="q24">
<p>
I can stand an operation on its head quicker than anyone.
</p>
<source>The Doctor, in "The Macra Terror"</source>
</quotation>
<quotation id="q25">
<p>
Bad laws were made to be broken.
</p>
<source>The Doctor, in "The Macra Terror"</source>
</quotation>
<quotation id="q26">
<p>
Logic, my dear Zoe, merely enables one to be wrong with
authority.
</p>
<source>The Doctor, in "The Wheel in Space"</source>
</quotation>
<quotation id="q27">
<p>
Your leader will be angry if you kill me; I'm a genius!
</p>
<source>The Doctor, in "The Seeds of Death"</source>
</quotation>
<quotation id="q28">
<p>
You could augment an earwig to the point where it understood
nuclear physics, but it would still be a very stupid thing to do!
</p>
<source>The Doctor, in "The Two Doctors"</source>
</quotation>
<quotation id="q29">
<p>
The universe should be big enough for the both of us ... just.
</p>
<source>The Doctor, in "The Two Doctors"</source>
</quotation>
<quotation id="q30">
<p>
"Look at him! He's got 'archaeologist' written all over him!"
</p>
<p>
"Really? Does it show?"
</p>
<source>Viner and the Doctor, in "Tomb of the Cybermen"</source>
</quotation>
<quotation id="q31">
<p>
"You look very nice in that dress, Victoria."
</p>
<p>
"Thank you. You don't think it's a bit, uh --"
</p>
<p>
"A bit short? Oh, I wouldn't worry about that. Look at Jamie's."
</p>
<source>The Doctor and Victoria, in "Tomb of the Cybermen"</source>
</quotation>
<quotation id="q32">
<p>
Do not raise your voice. You will achieve nothing by shouting.
</p>
<source>Kaftan, in "Tomb of the Cybermen"</source>
</quotation>
<quotation id="q33">
<p>
"Yes, yes, I can see that, but how did you know in the first
place?"
</p>
<p>
"Oh, I use my own special technique."
</p>
<p>
"Oh, really, Doctor? And may we know what that is?"
</p>
<p>
"Keeping my eyes open and my mouth shut."
</p>
<source>Klieg and The Doctor, in "Tomb of the Cybermen"</source>
</quotation>
<quotation id="q34">
<p>
I love to see the experts at work, don't you?
</p>
<source>The Doctor, in "Tomb of the Cybermen"</source>
</quotation>
<quotation id="q35">
<p>
If you take the sum of the integrates [sic] and express the
results as a power series, then the interstices show the basic binary
blocks, although I wouldn't do it if I were you.
</p>
<source>The Doctor, in "Tomb of the Cybermen"</source>
</quotation>
<quotation id="q36">
<p>
Your struggle is futile.
</p>
<source>The Cybercontroller, in "Tomb of the Cybermen"</source>
</quotation>
<quotation id="q37">
<p>
Our lives are different from anybody else's. That's the exciting
thing. Nobody in the universe can do what we're doing!
</p>
<source>The Doctor, in "Tomb of the Cybermen"</source>
</quotation>
<quotation id="q38">
<p>
"The power cable generated an electrical field and confused
their tiny metal minds. You might almost say they had a complete metal
breakdown."
</p>
<p>
<wincing> "Oooh."
</p>
<p>
"I'm so sorry."
</p>
<source>The Doctor and Jamie, in "Tomb of the Cybermen"</source>
</quotation>
<quotation id="q39">
<p>
"He's fortunate. I spared him."
</p>
<p>
"You mean you missed him."
</p>
<source>Klieg and Jamie, in "Tomb of the Cybermen"</source>
</quotation>
<quotation id="q40">
<p>
When I say run, run!
</p>
<source>The Doctor, in "Tomb of the Cybermen"</source>
</quotation>
<quotation id="q41">
<p>
My dear Miss Shaw, I never "report myself" anywhere..
particularly not "forthwith".
</p>
<source>The Doctor, in "The Silurians"</source>
</quotation>
<quotation id="q42">
<p>
"It bombards atoms with subatomic particles."
</p>
<p>
"Why?"
</p>
<source>Dr. Lawrence and the Doctor, in "The Silurians"</source>
</quotation>
<quotation id="q43">
<p>
"I take it you're yet another member of the UNIT team?"
</p>
<p>
"Yes. Depressing, isn't it?"
</p>
<source>Dr. Meredith and the Doctor, in "The Silurians"</source>
</quotation>
<quotation id="q44">
<p>
"This is the permanent undersecretary."
</p>
<p>
"Yes, well, I've got no time to chat to undersecretaries,
permanent or otherwise."
</p>
<source>The Doctor, in "The Silurians"</source>
</quotation>
<quotation id="q45">
<p>
"You were a respected scientist once."
</p>
<p>
"Grossly underpaid."
</p>
<source>Liz Shaw and the traitorous Dr. Lennox, in "The Ambassadors of Death"</source>
</quotation>
<quotation id="q46">
<p>
I can also withstand considerably more G-force than most people,
even though I do say so myself.
</p>
<source>The Doctor, in "The Ambassadors of Death"</source>
</quotation>
<quotation id="q47">
<p>
Didn't you find two angry men stuck to my car?
</p>
<source>The Doctor, in "The Ambassadors of Death"</source>
</quotation>
<quotation id="q48">
<p>
"The only people who could set this up would be foreign agents
with enormous resources."
</p>
<p>
"And hair combs."
</p>
<source>Gen. Carrington and the Doctor, in "The Ambassadors of Death"</source>
</quotation>
<quotation id="q49">
<p>
"Don't try anything."
</p>
<p>
"It's all right; I won't hurt you."
</p>
<source>Unnamed thug and Liz Shaw, in "The Ambassadors of Death"</source>
</quotation>
<quotation id="q50">
<p>
"Control to capsule: do you have visual contact?"
</p>
<p>
"Do you mean 'Can I see it'?"
</p>
<source>Cornish and the Doctor, in "The Ambassadors of Death"</source>
</quotation>
<quotation id="q51">
<p>
"Now look, this is a government project, right?"
</p>
<p>
"Right."
</p>
<p>
"So now I'm a sort of temporary civil servant."
</p>
<p>
"Broadly speaking, yes. How do you like the idea?"
</p>
<p>
"No comment."
</p>
<source>Sutton and Sir Keith, in "Inferno"</source>
</quotation>
<quotation id="q52">
<p>
Mind you, I'm not wild about computers myself, but they are a
tool. If you have a tool, it's stupid not to use it.
</p>
<source>The Doctor, in "Inferno"</source>
</quotation>
<quotation id="q53">
<p>
"But I don't <em>exist</em> in your world!"
</p>
<p>
"Then you won't feel the bullets when we shoot you."
</p>
<source>The Doctor and the Brigade Leader, in "Inferno"</source>
</quotation>
<quotation id="q54">
<p>
"You are giving us a great deal of trouble."
</p>
<p>
"I'm delighted to hear that."
</p>
<source>The Brigade Leader and the Doctor, in "Inferno"</source>
</quotation>
<quotation id="q55">
<p>
"I'm your new assistant."
</p>
<p>
"Oh, <em>no</em>."
</p>
<source>Jo Grant and the Doctor, in "Terror of the Autons"</source>
</quotation>
<quotation id="q56">
<p>
"I thought you said you took science at A level."
</p>
<p>
"I didn't say I passed."
</p>
<source>The Doctor and Jo Grant, in "Terror of the Autons"</source>
</quotation>
<quotation id="q57">
<p>
What the blazes are you doing in here? Don't you know this area
is strictly off-limits to everybody except the tea lady and the
Brigadier's personal staff?
</p>
<source>The Doctor, in "Terror of the Autons"</source>
</quotation>
<quotation id="q58">
<p>
Oh, by the way, talking of eggs, I want a four-hour scan below
the hydrogen line tomorrow; I'll give you the precise wavelength
later.
</p>
<source>One of the astronomers, in "Terror of the Autons"</source>
</quotation>
<quotation id="q59">
<p>
Nonsense; what you need, as Ms Shaw herself so often remarked,
is someone to pass you your test tubes and tell you how brilliant you
are. Miss Grant will fulfill that function admirably.
</p>
<source>The Brigadier to the Doctor, in "Terror of the Autons"</source>
</quotation>
<quotation id="q60">
<p>
"I'm travelling incognito."
</p>
<p>
"Oh? Why?"
</p>
<p>
"We Time Lords don't care to be conspicuous." <looks at the
Doctor> "Some of us, that is."
</p>
<source>The unnamed Time Lord, in "Terror of the Autons"</source>
</quotation>
<quotation id="q61">
<p>
That jackanapes! All he ever does is cause trouble.
</p>
<source>The Doctor talking about the Master, in "Terror of the Autons"</source>
</quotation>
<quotation id="q62">
<p>
You are incorrigibly meddlesome, Doctor, but we've always felt
that your hearts are in the right places.
</p>
<source>The unnamed Time Lord, in "Terror of the Autons"</source>
</quotation>
<quotation id="q63">
<p>
"I refuse to be worried by a renegade like the Master. He's an
unimaginative plodder."
</p>
<p>
"His degree in cosmic science <em>was</em> of a higher class
than yours."
</p>
<p>
"Yes, well, I was a late developer."
</p>
<source>The Doctor and the unnamed Time Lord, in "Terror of the Autons"</source>
</quotation>
<quotation id="q64">
<p>
"How much did he pay you?"
</p>
<p>
"Come, come, Doctor -- gentlemen don't discuss money."
</p>
<p>
"Nonsense; gentlemen never talk about anything else."
</p>
<source>The Doctor and Rossini, in "Terror of the Autons"</source>
</quotation>
<quotation id="q65">
<p>
I think you'll find, Sir, that I'm qualified to deal with
practically everything, if I choose.
</p>
<source>The Doctor, in "Terror of the Autons"</source>
</quotation>
<quotation id="q66">
<p>
"Jo, it's a pity escapology wasn't part of your curriculum."
</p>
<p>
"Funny you should say that. Look." <shows untied hand>
</p>
<source>The Doctor and Jo, tied up, in "Terror of the Autons"</source>
</quotation>
<quotation id="q67">
<p>
"What else can we do?"
</p>
<p>
"Nothing very much. Oh, I suppose you can take the normal
precautions against a nuclear blast, like sticky tape on the windows
and that sort of thing."
</p>
<source>Chinn and the Master, in "The Claws of Axos"</source>
</quotation>
<quotation id="q68">
<p>
"What about the Master?"
</p>
<p>
"I sincerely hope he's with them."
</p>
<p>
"Hope?"
</p>
<p>
"I can't be absolutely sure, I <em>was</em> pretty busy at the
time. But I'm 90% certain, though."
</p>
<p>
"How much?"
</p>
<p>
"Well, pretty certain. <pause> Well, I suppose he could
have got away."
</p>
<source>Filer and the Doctor, in "The Claws of Axos"</source>
</quotation>
<quotation id="q69">
<p>
"I don't believe it. It's bigger inside than out!"
</p>
<p>
"Yes, the TARDIS is dimensionally transcendental."
</p>
<p>
"What does that mean?"
</p>
<p>
"It means it's bigger inside than out."
</p>
<source>Jo and the Doctor, in "Colony in Space"</source>
</quotation>
<quotation id="q70">
<p>
"Is the atmosphere poisonous?"
</p>
<p>
"No, no. It's quite healthy. Similar to Earth, before the
invention of the motorcar."
</p>
<source>Jo and the Doctor, in "Colony in Space"</source>
</quotation>
<quotation id="q71">
<p>
Everything that happens in life has a scientific explanation --
if you look for it.
</p>
<source>The Doctor, in "The Daemons"</source>
</quotation>
<quotation id="q72">
<p>
"Would you like to explain that reference, Professor?"
</p>
<p>
"No."
</p>
<source>The BBC man and Professor Horner, in "The Daemons"</source>
</quotation>
<quotation id="q73">
<p>
Why should I believe you? A rationalist existentialist priest,
indeed!
</p>
<source>Miss Hawthorne, in "The Daemons"</source>
</quotation>
<quotation id="q74">
<p>
"I don't get it."
</p>
<p>
"Probably because I haven't finished, Captain Yates."
</p>
<source>Yates and the Doctor, in "The Daemons"</source>
</quotation>
<quotation id="q75">
<p>
I'm not going to sit here like a spare lemon waiting for the
squeezer.
</p>
<source>The Brigadier, in "The Daemons"</source>
</quotation>
<quotation id="q76">
<p>
"Look, we'd get along much faster if we knew what we were
doing."
</p>
<p>
"Yes, I couldn't agree with you more, Sergeant. Now let's
concentrate, shall we?"
</p>
<source>The Doctor and Sgt. Osgood, in "The Daemons"</source>
</quotation>
<quotation id="q77">
<p>
"<em>Do</em> you know what you're doing?"
</p>
<p>
"My dear chap, I can't wait to find out."
</p>
<source>The Brigadier and the Doctor, in "The Daemons"</source>
</quotation>
<quotation id="q78">
<p>
"How on Earth did you do that?"
</p>
<p>
"Elemental, my dear Benton."
</p>
<source>Benton and the Doctor, in "The Daemons"</source>
</quotation>
<quotation id="q79">
<p>
Jenkins! Chap with the wings there -- five rounds rapid.
</p>
<source>The Brigadier, in "The Daemons"</source>
</quotation>
<quotation id="q80">
<p>
Look, try and use your intelligence, man, even if you are a
politician.
</p>
<source>The Doctor, in "Day of the Daleks"</source>
</quotation>
<quotation id="q81">
<p>
That's a most good-natured wine. A touch sardonic, perhaps, but
not cynical. A most civilized wine, one after my own heart.
</p>
<source>The Doctor, in "Day of the Daleks"</source>
</quotation>
<quotation id="q82">
<p>
A dream? Really, Doctor, you'll be consulting the entrails of a
sheep next.
</p>
<source>The Brigadier, in "The Time Monster"</source>
</quotation>
<quotation id="q83">
<p>
You know, Doctor, you're quite the most infuriating man I've
ever met.
</p>
<source>Jo, in "The Time Monster"</source>
</quotation>
<quotation id="q84">
<p>
"I feel like the back end of a pantomime horse."
</p>
<p>
"Very suitable for a keen young man like you."
</p>
<p>
"Eh? Come again?"
</p>
<p>
"Starting at the bottom."
</p>
<source>Stuart and Dr Ingram, in "The Time Monster"</source>
</quotation>
<quotation id="q85">
<p>
Do you know he has an excellent brain, that man... though a
little pedestrian. But oh dear, what a bore the fellow is!
</p>
<source>The Master, describing the Doctor, in "The Time Monster"</source>
</quotation>
<quotation id="q86">
<p>
"Empirical?"
</p>
<p>
"That, Sgt. Benton, means that I haven't got a clue what I'm
doing."
</p>
<source>Benton and Dr Ingram, in "The Time Monster"</source>
</quotation>
<quotation id="q87">
<p>
"You're mad... paranoid!"
</p>
<p>
"Who isn't? The only difference is that I'm just a little more
honest than the rest."
</p>
<source>The Doctor and the Master, in "The Time Monster"</source>
</quotation>
<quotation id="q88">
<p>
Oh, those are my subconscious thoughts. I shouldn't listen to
them too hard if I were you; I'm not all that proud of some of them.
</p>
<source>The Doctor, in "The Time Monster"</source>
</quotation>
<quotation id="q89">
<p>
"E equals m C cubed."
</p>
<p>
"Squared."
</p>
<p>
"What?"
</p>
<p>
"E = m C squared, not cubed."
</p>
<p>
"Not in the extratemporal physics of the time vortex."
</p>
<source>Dr Percival and the Master, in "The Time Monster"</source>
</quotation>
<quotation id="q90">
<p>
"It doesn't work."
</p>
<p>
"<dryly> You astound me."
</p>
<source>The Doctor and the Brigadier, in "The Time Monster"</source>
</quotation>
<quotation id="q91">
<p>
"The thing is, Doctor, is there anything I can do?"
</p>
<p>
"Yes, pass me a silicon rod, will you?" <stirs his tea with
it>
</p>
<source>The Brigadier and the Doctor, in "The Three Doctors"</source>
</quotation>
<quotation id="q92">
<p>
"Well, Sergeant? Aren't you going to say that it's bigger on the
inside than it is on the outside? Everybody else does."
</p>
<p>
"It's pretty obvious, isn't it?"
</p>
<source>The Doctor and Sgt. Benton, in "The Three Doctors"</source>
</quotation>
<quotation id="q93">
<p>
"Nothing to do with you surprises me any more."
</p>
<p>
"Thank you for the compliment."
</p>
<source>Sgt. Benton and the Doctor, in "The Three Doctors"</source>
</quotation>
<quotation id="q94">
<p>
"So why don't you consult those all-powerful superiors of
yours?"
</p>
<p>
"Oh, right now they're far from superior. That's why they left
it up to me and me and me."
</p>
<source>The Brigadier and the Doctor, in "The Three Doctors"</source>
</quotation>
<quotation id="q95">
<p>
I can see you've been doing the TARDIS up a bit. I don't like
it.
</p>
<source>The second Doctor, in "The Three Doctors"</source>
</quotation>
<quotation id="q96">
<p>
"What are we going to do now?"
</p>
<p>
"Keep it confused, feed it with useless information. I wonder if
I have a television set handy?"
</p>
<source>Sgt. Benton and the second Doctor, in "The Three Doctors"</source>
</quotation>
<quotation id="q97">
<p>
"Look, if you can't reverse the energy drain, the fabric of the
entire Universe could be torn apart."
</p>
<p>
"What if it is? It will make an interesting spectacle."
</p>
<source>The Doctor and Omega, in "The Three Doctors"</source>
</quotation>
<quotation id="q98">
<p>
Power is the only freedom that I seek.
</p>
<source>Omega, in "The Three Doctors"</source>
</quotation>
<quotation id="q99">
<p>
"If only I could find my recorder, I could play you a little
something to pass the time."
</p>
<p>
"We should be thankful for small mercies."
</p>
<source>The second Doctor and the Brigadier, in "The Three Doctors"</source>
</quotation>
<quotation id="q100">
<p>
We're talking about one of the most powerful blokes in the
cosmos. "Nobble" him?
</p>
<source>The Doctor, in "The Three Doctors"</source>
</quotation>
<quotation id="q101">
<p>
The generators were built by the old Eternity Perpetual company.
They were designed to last forever; that's why the company went
bankrupt.
</p>
<source>Vorg, in "Carnival of Monsters"</source>
</quotation>
<quotation id="q102">
<p>
The Tribunal is not deliberating, the Tribunal is arguing. Quite
nonsensically, if I may say so.
</p>
<source>The Doctor, in "Carnival of Monsters"</source>
</quotation>
<quotation id="q103">
<p>
One has no wish to be devoured by alien monstrosities, even in
the cause of political progress.
</p>
<source>One of the Tribunal, in "Carnival of Monsters"</source>
</quotation>
<quotation id="q104">
<p>
"Put your finger on there a minute, will you?"
</p>
<p>
"Here?" <electrical sparks fly> "Ouch!"
</p>
<p>
"Good; that must be the live terminal."
</p>
<source>Vorg and Shirna, in "Carnival of Monsters"</source>
</quotation>
<quotation id="q105">
<p>
But Doctor, it's exactly your cup of tea. The fellow's bright
green, apparently, and dead.
</p>
<source>The Brigadier, in "The Green Death"</source>
</quotation>
<quotation id="q106">
<p>
"Do I have to order you, Doctor?"
</p>
<p>
"I wouldn't advise it."
</p>
<source>The Brigadier and the Doctor, in "The Green Death"</source>
</quotation>
<quotation id="q107">
<p>
"Your paper on DNA synthesis was quite remarkable for your age."
</p>
<p>
"A promising youngster, huh?"
</p>
<p>
"No, no; I mean for the age that you live in."
</p>
<source>The Doctor and Professor Jones, in "The Green Death"</source>
</quotation>
<quotation id="q108">
<p>
Brigadier, a straight line may be the shortest distance between
two points, but it is by no means the most interesting.