-
Notifications
You must be signed in to change notification settings - Fork 0
/
second_doctor.json
2846 lines (2846 loc) · 184 KB
/
second_doctor.json
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
[
{
"doctor": "second",
"from": "1966",
"to": "2013",
"first_serial": "The Tenth Planet",
"last_serial": "The Day of The Doctor",
"actor": "Patrick Troughton",
"appearances": "21 stories (119 episodes)",
"sonic": "yes",
"tardis_interior": "http://www.thedoctorwhosite.co.uk/tardis/interior/",
"tardis_exterior": "http://www.thedoctorwhosite.co.uk/tardis/exterior/1966-tardis/",
"costume": "Cosmic Hobo",
"description": "Though outwardly warm, bumbling, and somewhat clownish, the Second Doctor had a darker, more cunning aspect to his personality — one which he usually kept hidden in order to carry out his plans.",
"first_words": "Slower... SLOWER!!! Concentrate on one thing... ONE THING!!!...",
"last_words": "No! Stop, you’re making me giddy! No, you can’t do this to me! No, no, no, no, no, no, no, no, no, no, no, no, no!",
"seasons": {
"season": [
{
"season": "4",
"from": "1966",
"to": "1967",
"classic": "yes",
"new": "no",
"serials": {
"serial": [
{
"name": "The Tenth Planet",
"airdate": "8 – 29 October 1966",
"production_code": "DD",
"overview": "The TARDIS crew arrive at the South Pole in the year 1986, near the Snowcap base. Soon afterwards, hostile cyborgs from Earth's twin planet Mondas, known as Cybermen, quickly take over the base, planning to convert every human being into Cybermen like themselves while the Doctor's old body is wearing a little bit thin.",
"companions": {
"companion": [
{
"character": "Polly",
"died": "no",
"left": "no",
"left_behind": "no"
}, {
"character": "Ben Jackson",
"died": "no",
"left": "no",
"left_behind": "no"
}
]
},
"enemies": {
"enemy": [
{
"enemy": "Cybermen",
"actor": [
{
"name": "Harry Brooks"
}, {
"name": "Reg Whitehead"
}, {
"name": "Gregg Palmer"
}
]
}
]
},
"episodes": {
"episode": [
{
"archive": "Only stills and/or fragments exist",
"name": "Episode 4",
"airdate": "29 October 1966",
"overview": "The TARDIS materialises decades in the future, in the year 1986, at Snowcap Tracking Station at the South Pole. There, an international team is struggling to bring down a shuttle which has inexplicably been drawn out of orbit – by the gravity of a tenth planet, Earth's exact mirror twin. The Doctor realises what's about to happen, but before he can deliver his warning, Snowcap is invaded by the Cybermen – natives of the planet Mondas who have slowly replaced most of their body parts with cybernetic prostheses, and who have now returned to their twin to drain the energy away from Earth. However, the Doctor and his friends soon find themselves fighting a threat closer to home – in order to save his astronaut son, the American General Cutler intends to attack Mondas with a Z-Bomb despite the danger that the radiation from the explosion will render half of Earth uninhabitable. The Doctor realises that the Cybermen have invaded Earth because Mondas is drawing away too much energy, and that their best hope is simply to stall the Cybermen until Mondas explodes of its own accord. But the energy drain is affecting the elderly Doctor's health, and when he finally returns to his TARDIS he collapses – and before Ben's and Polly's eyes, he seems to change into an entirely different person...",
"director": "Derek Martinus",
"writers": [
{
"name": "Kit Pedler"
}
]
}
]
}
}, {
"name": "The Power of the Daleks",
"airdate": "5 November – 10 December 1966",
"production_code": "EE",
"overview": "The newly regenerated Doctor, Ben and Polly soon arrive on the planet Vulcan, a human colony. There, the Doctor finds the humans claiming that the Daleks are their servants. But a more sinister plan is behind the Daleks.",
"companions": {
"companion": [
{
"character": "Polly",
"died": "no",
"left": "no",
"left_behind": "no"
}, {
"character": "Ben Jackson",
"died": "no",
"left": "no",
"left_behind": "no"
}
]
},
"enemies": {
"enemy": [
{
"enemy": "Daleks",
"actor": [
{
"name": "Gerald Taylor"
}, {
"name": "Kevin Manser"
}, {
"name": "Robert Jewell"
}, {
"name": "John Scott Martin"
}
]
}
]
},
"episodes": {
"episode": [
{
"archive": "Only stills and/or fragments exist",
"name": "Episode 1",
"airdate": "5 November 1966",
"overview": "The Doctor appears to have transformed into an entirely different person, but Ben and Polly are unsure whether this strange man really is the Doctor or not. They soon have other matters to worry about, as the TARDIS takes them to a human colony on the planet Vulcan. Rebel activity is causing trouble for the colony governor, an Earth Examiner has recently been murdered, and the colony scientist Lesterson is obsessed with his experiments on an alien capsule unearthed from the mercury swamps. The Doctor takes the Examiner's place in order to investigate his murder, but soon discovers that the alien capsule is far more significant – for it contains dormant Daleks which Lesterson has woken. Lesterson believes that the Daleks are harmless robots which can be used to serve the colony, while the rebels are far more interested in the uses of the Daleks' in-built weaponry. Nobody will listen to the Doctor when he warns them that the Daleks have their own agenda – one which could result in the extermination of all human beings in the colony.",
"director": "Christopher Barry",
"writers": [
{
"name": "David Whitaker"
}, {
"name": "Dennis Spooner"
}
]
}, {
"archive": "Only stills and/or fragments exist",
"name": "Episode 2",
"airdate": "12 November 1966",
"overview": "The Doctor appears to have transformed into an entirely different person, but Ben and Polly are unsure whether this strange man really is the Doctor or not. They soon have other matters to worry about, as the TARDIS takes them to a human colony on the planet Vulcan. Rebel activity is causing trouble for the colony governor, an Earth Examiner has recently been murdered, and the colony scientist Lesterson is obsessed with his experiments on an alien capsule unearthed from the mercury swamps. The Doctor takes the Examiner's place in order to investigate his murder, but soon discovers that the alien capsule is far more significant – for it contains dormant Daleks which Lesterson has woken. Lesterson believes that the Daleks are harmless robots which can be used to serve the colony, while the rebels are far more interested in the uses of the Daleks' in-built weaponry. Nobody will listen to the Doctor when he warns them that the Daleks have their own agenda – one which could result in the extermination of all human beings in the colony.",
"director": "Christopher Barry",
"writers": [
{
"name": "David Whitaker"
}, {
"name": "Dennis Spooner"
}
]
}, {
"archive": "Only stills and/or fragments exist",
"name": "Episode 3",
"airdate": "19 November 1966",
"overview": "The Doctor appears to have transformed into an entirely different person, but Ben and Polly are unsure whether this strange man really is the Doctor or not. They soon have other matters to worry about, as the TARDIS takes them to a human colony on the planet Vulcan. Rebel activity is causing trouble for the colony governor, an Earth Examiner has recently been murdered, and the colony scientist Lesterson is obsessed with his experiments on an alien capsule unearthed from the mercury swamps. The Doctor takes the Examiner's place in order to investigate his murder, but soon discovers that the alien capsule is far more significant – for it contains dormant Daleks which Lesterson has woken. Lesterson believes that the Daleks are harmless robots which can be used to serve the colony, while the rebels are far more interested in the uses of the Daleks' in-built weaponry. Nobody will listen to the Doctor when he warns them that the Daleks have their own agenda – one which could result in the extermination of all human beings in the colony.",
"director": "Christopher Barry",
"writers": [
{
"name": "David Whitaker"
}, {
"name": "Dennis Spooner"
}
]
}, {
"archive": "Only stills and/or fragments exist",
"name": "Episode 4",
"airdate": "26 November 1966",
"overview": "The Doctor appears to have transformed into an entirely different person, but Ben and Polly are unsure whether this strange man really is the Doctor or not. They soon have other matters to worry about, as the TARDIS takes them to a human colony on the planet Vulcan. Rebel activity is causing trouble for the colony governor, an Earth Examiner has recently been murdered, and the colony scientist Lesterson is obsessed with his experiments on an alien capsule unearthed from the mercury swamps. The Doctor takes the Examiner's place in order to investigate his murder, but soon discovers that the alien capsule is far more significant – for it contains dormant Daleks which Lesterson has woken. Lesterson believes that the Daleks are harmless robots which can be used to serve the colony, while the rebels are far more interested in the uses of the Daleks' in-built weaponry. Nobody will listen to the Doctor when he warns them that the Daleks have their own agenda – one which could result in the extermination of all human beings in the colony.",
"director": "Christopher Barry",
"writers": [
{
"name": "David Whitaker"
}, {
"name": "Dennis Spooner"
}
]
}, {
"archive": "Only stills and/or fragments exist",
"name": "Episode 5",
"airdate": "3 December 1966",
"overview": "The Doctor appears to have transformed into an entirely different person, but Ben and Polly are unsure whether this strange man really is the Doctor or not. They soon have other matters to worry about, as the TARDIS takes them to a human colony on the planet Vulcan. Rebel activity is causing trouble for the colony governor, an Earth Examiner has recently been murdered, and the colony scientist Lesterson is obsessed with his experiments on an alien capsule unearthed from the mercury swamps. The Doctor takes the Examiner's place in order to investigate his murder, but soon discovers that the alien capsule is far more significant – for it contains dormant Daleks which Lesterson has woken. Lesterson believes that the Daleks are harmless robots which can be used to serve the colony, while the rebels are far more interested in the uses of the Daleks' in-built weaponry. Nobody will listen to the Doctor when he warns them that the Daleks have their own agenda – one which could result in the extermination of all human beings in the colony.",
"director": "Christopher Barry",
"writers": [
{
"name": "David Whitaker"
}, {
"name": "Dennis Spooner"
}
]
}, {
"archive": "Only stills and/or fragments exist",
"name": "Episode 6",
"airdate": "10 December 1966",
"overview": "The Doctor appears to have transformed into an entirely different person, but Ben and Polly are unsure whether this strange man really is the Doctor or not. They soon have other matters to worry about, as the TARDIS takes them to a human colony on the planet Vulcan. Rebel activity is causing trouble for the colony governor, an Earth Examiner has recently been murdered, and the colony scientist Lesterson is obsessed with his experiments on an alien capsule unearthed from the mercury swamps. The Doctor takes the Examiner's place in order to investigate his murder, but soon discovers that the alien capsule is far more significant – for it contains dormant Daleks which Lesterson has woken. Lesterson believes that the Daleks are harmless robots which can be used to serve the colony, while the rebels are far more interested in the uses of the Daleks' in-built weaponry. Nobody will listen to the Doctor when he warns them that the Daleks have their own agenda – one which could result in the extermination of all human beings in the colony.",
"director": "Christopher Barry",
"writers": [
{
"name": "David Whitaker"
}, {
"name": "Dennis Spooner"
}
]
}
]
}
}, {
"name": "The Highlanders",
"airdate": "17 December - 7 January 1967",
"production_code": "FF",
"overview": "The TARDIS arrives after the Battle of Culloden, where they encounter a plan to sell defeated Scots rebels into slavery.",
"companions": {
"companion": [
{
"character": "Polly",
"died": "no",
"left": "no",
"left_behind": "no"
}, {
"character": "Ben Jackson",
"died": "no",
"left": "no",
"left_behind": "no"
}, {
"character": "Jamie McCrimmon",
"died": "no",
"left": "no",
"left_behind": "no"
}
]
},
"enemies": {
"enemy": [
{
"enemy": "Solicitor Grey",
"actor": [
{
"name": "David Garth"
}
]
}
]
},
"episodes": {
"episode": [
{
"archive": "Only stills and/or fragments exist",
"name": "Episode 1",
"airdate": "17 December 1966",
"overview": "The TARDIS materialises on Culloden Moor just after the rout of the Jacobite rebels in 1745. The British army is mopping up survivors, and when they find the Doctor and Ben in the company of rebels they are accused of desertion and arrested. They are saved from execution by Solicitor Grey, the Commissioner of Prisons – but he has his own agenda for the prisoners. Imprisoned in Inverness, the Doctor realises that Grey is running a scam of his own, removing rebels from the prisons with the promise that they will be saved from execution if they sign contracts binding them to service in the Jamaican plantations. In short, he's a slave trader. While the Doctor and Ben try to find a way to escape and help their new friends, Polly and Kirsty MacLaren, whose father has been kidnapped by Grey, blackmail an English officer into helping them locate their kidnapped friends and family. The Doctor and his companions must then find their way back to the TARDIS through a battlefield, and the young Highland piper who helps them, Jamie McCrimmon, accompanies them on their travels.",
"director": "Hugh David",
"writers": [
{
"name": "Elwyn Jones"
}, {
"name": "Gerry Davis"
}
]
}, {
"archive": "Only stills and/or fragments exist",
"name": "Episode 2",
"airdate": "24 December 1966",
"overview": "The TARDIS materialises on Culloden Moor just after the rout of the Jacobite rebels in 1745. The British army is mopping up survivors, and when they find the Doctor and Ben in the company of rebels they are accused of desertion and arrested. They are saved from execution by Solicitor Grey, the Commissioner of Prisons – but he has his own agenda for the prisoners. Imprisoned in Inverness, the Doctor realises that Grey is running a scam of his own, removing rebels from the prisons with the promise that they will be saved from execution if they sign contracts binding them to service in the Jamaican plantations. In short, he's a slave trader. While the Doctor and Ben try to find a way to escape and help their new friends, Polly and Kirsty MacLaren, whose father has been kidnapped by Grey, blackmail an English officer into helping them locate their kidnapped friends and family. The Doctor and his companions must then find their way back to the TARDIS through a battlefield, and the young Highland piper who helps them, Jamie McCrimmon, accompanies them on their travels.",
"director": "Hugh David",
"writers": [
{
"name": "Elwyn Jones"
}, {
"name": "Gerry Davis"
}
]
}, {
"archive": "Only stills and/or fragments exist",
"name": "Episode 3",
"airdate": "31 December 1966",
"overview": "The TARDIS materialises on Culloden Moor just after the rout of the Jacobite rebels in 1745. The British army is mopping up survivors, and when they find the Doctor and Ben in the company of rebels they are accused of desertion and arrested. They are saved from execution by Solicitor Grey, the Commissioner of Prisons – but he has his own agenda for the prisoners. Imprisoned in Inverness, the Doctor realises that Grey is running a scam of his own, removing rebels from the prisons with the promise that they will be saved from execution if they sign contracts binding them to service in the Jamaican plantations. In short, he's a slave trader. While the Doctor and Ben try to find a way to escape and help their new friends, Polly and Kirsty MacLaren, whose father has been kidnapped by Grey, blackmail an English officer into helping them locate their kidnapped friends and family. The Doctor and his companions must then find their way back to the TARDIS through a battlefield, and the young Highland piper who helps them, Jamie McCrimmon, accompanies them on their travels.",
"director": "Hugh David",
"writers": [
{
"name": "Elwyn Jones"
}, {
"name": "Gerry Davis"
}
]
}, {
"archive": "Only stills and/or fragments exist",
"name": "Episode 4",
"airdate": "7 January 1967",
"overview": "The TARDIS materialises on Culloden Moor just after the rout of the Jacobite rebels in 1745. The British army is mopping up survivors, and when they find the Doctor and Ben in the company of rebels they are accused of desertion and arrested. They are saved from execution by Solicitor Grey, the Commissioner of Prisons – but he has his own agenda for the prisoners. Imprisoned in Inverness, the Doctor realises that Grey is running a scam of his own, removing rebels from the prisons with the promise that they will be saved from execution if they sign contracts binding them to service in the Jamaican plantations. In short, he's a slave trader. While the Doctor and Ben try to find a way to escape and help their new friends, Polly and Kirsty MacLaren, whose father has been kidnapped by Grey, blackmail an English officer into helping them locate their kidnapped friends and family. The Doctor and his companions must then find their way back to the TARDIS through a battlefield, and the young Highland piper who helps them, Jamie McCrimmon, accompanies them on their travels.",
"director": "Hugh David",
"writers": [
{
"name": "Elwyn Jones"
}, {
"name": "Gerry Davis"
}
]
}
]
}
}, {
"name": "The Underwater Menace",
"airdate": "14 January 1967 - 4 February 1967",
"production_code": "GG",
"overview": "The TARDIS lands on a deserted volcanic island. The Doctor, Ben, Polly and Jamie are captured and taken in a lift down a shaft below the seabed, There they realise they are prisoners of the survivors of Atlantis, and that their High Priest, Lolem, declares they are to be sacrificed to the great god Amdo. Professor Zaroff arrives and has a plan to raise Atlantis from the sea. ",
"companions": {
"companion": [
{
"character": "Polly",
"died": "no",
"left": "no",
"left_behind": "no"
}, {
"character": "Ben Jackson",
"died": "no",
"left": "no",
"left_behind": "no"
}, {
"character": "Jamie McCrimmon",
"died": "no",
"left": "no",
"left_behind": "no"
}
]
},
"enemies": {
"enemy": [
{
"enemy": "Professor Zaroff",
"actor": [
{
"name": "Joseph Fürst"
}
]
}
]
},
"episodes": {
"episode": [
{
"archive": "Only stills and/or fragments exist",
"name": "Episode 1",
"airdate": "14 January 1967",
"overview": "The Doctor and his friends materialise on a volcanic island, where they are kidnapped by natives of an underground civilisation. To the Doctor's great surprise, these are the survivors of Atlantis – and the famous Professor Zaroff, thought to have died twenty years ago, is amongst them. Zaroff has provided the Atlanteans with a new source of food, has taught them how to surgically convert their slave caste into Fish People who can survive underwater, and has promised to raise Atlantis from the waves. Only the Doctor realises that Zaroff is mad, and that his \"plan\" to raise Atlantis will in fact result in the destruction of the Earth.",
"director": "Julia Smith",
"writers": [
{
"name": "Geoffrey Orme"
}
]
}, {
"archive": "16mm t/r",
"name": "Episode 2",
"airdate": "21 January 1967",
"overview": "The Doctor and his friends materialise on a volcanic island, where they are kidnapped by natives of an underground civilisation. To the Doctor's great surprise, these are the survivors of Atlantis – and the famous Professor Zaroff, thought to have died twenty years ago, is amongst them. Zaroff has provided the Atlanteans with a new source of food, has taught them how to surgically convert their slave caste into Fish People who can survive underwater, and has promised to raise Atlantis from the waves. Only the Doctor realises that Zaroff is mad, and that his \"plan\" to raise Atlantis will in fact result in the destruction of the Earth.",
"director": "Julia Smith",
"writers": [
{
"name": "Geoffrey Orme"
}
]
}, {
"archive": "16mm t/r",
"name": "Episode 3",
"airdate": "28 January 1967",
"overview": "The Doctor and his friends materialise on a volcanic island, where they are kidnapped by natives of an underground civilisation. To the Doctor's great surprise, these are the survivors of Atlantis – and the famous Professor Zaroff, thought to have died twenty years ago, is amongst them. Zaroff has provided the Atlanteans with a new source of food, has taught them how to surgically convert their slave caste into Fish People who can survive underwater, and has promised to raise Atlantis from the waves. Only the Doctor realises that Zaroff is mad, and that his \"plan\" to raise Atlantis will in fact result in the destruction of the Earth.",
"director": "Julia Smith",
"writers": [
{
"name": "Geoffrey Orme"
}
]
}, {
"archive": "Only stills and/or fragments exist",
"name": "Episode 4",
"airdate": "4 February 1967",
"overview": "The Doctor and his friends materialise on a volcanic island, where they are kidnapped by natives of an underground civilisation. To the Doctor's great surprise, these are the survivors of Atlantis – and the famous Professor Zaroff, thought to have died twenty years ago, is amongst them. Zaroff has provided the Atlanteans with a new source of food, has taught them how to surgically convert their slave caste into Fish People who can survive underwater, and has promised to raise Atlantis from the waves. Only the Doctor realises that Zaroff is mad, and that his \"plan\" to raise Atlantis will in fact result in the destruction of the Earth.",
"director": "Julia Smith",
"writers": [
{
"name": "Geoffrey Orme"
}
]
}
]
}
}, {
"name": "The Moonbase",
"airdate": "11 February 1967 - 4 March 1967",
"production_code": "HH",
"overview": "The TARDIS makes a bumpy landing on the Moon in the year 2070. When the TARDIS crew venture outside, they find a moonbase. Suddenly on the base, people start becoming seriously ill with symptoms of fever and delirium. The Doctor realises that their old enemies, the Cybermen, are stalking the moonbase and taking the patients' bodies. The leader of the moonbase gives the Doctor 24 hours to discover the cause of the virus, or else he leaves the Moon.",
"companions": {
"companion": [
{
"character": "Polly",
"died": "no",
"left": "no",
"left_behind": "no"
}, {
"character": "Ben Jackson",
"died": "no",
"left": "no",
"left_behind": "no"
}, {
"character": "Jamie McCrimmon",
"died": "no",
"left": "no",
"left_behind": "no"
}
]
},
"enemies": {
"enemy": [
{
"enemy": "Cybermen",
"actor": [
{
"name": "John Wills"
}, {
"name": "Sonnie Willis"
}, {
"name": "Peter Greene"
}, {
"name": "Keith Goodman"
}, {
"name": "Reg Whitehead"
}
]
}
]
},
"episodes": {
"episode": [
{
"archive": "Only stills and/or fragments exist",
"name": "Episode 1",
"airdate": "11 February 1967",
"overview": "Trying to take his companions to Mars, the Doctor instead ends up on the Moon in the year 2070. Earth's weather is controlled by means of gravity waves directed from an internationally-run Moonbase, but the staff of the Moonbase are suffering from a mysterious outbreak of plague, and moments after the Doctor and his friends enter the entire Moonbase is placed under quarantine. The Doctor offers to help find a cure for the plague, which he suspects is no plague at all – and he's right. The base's food supplies have in fact been poisoned by Cybermen from the colony world Telos, who intend to seize control of the Graviton and use it to destroy the Earth – not as revenge for the destruction of Mondas, but simply and logically to eliminate a potential threat.",
"director": "Morris Barry",
"writers": [
{
"name": "Kit Pedler"
}, {
"name": "Gerry Davis"
}
]
}, {
"archive": "16mm t/r",
"name": "Episode 2",
"airdate": "18 February 1967",
"overview": "Trying to take his companions to Mars, the Doctor instead ends up on the Moon in the year 2070. Earth's weather is controlled by means of gravity waves directed from an internationally-run Moonbase, but the staff of the Moonbase are suffering from a mysterious outbreak of plague, and moments after the Doctor and his friends enter the entire Moonbase is placed under quarantine. The Doctor offers to help find a cure for the plague, which he suspects is no plague at all – and he's right. The base's food supplies have in fact been poisoned by Cybermen from the colony world Telos, who intend to seize control of the Graviton and use it to destroy the Earth – not as revenge for the destruction of Mondas, but simply and logically to eliminate a potential threat.",
"director": "Morris Barry",
"writers": [
{
"name": "Kit Pedler"
}, {
"name": "Gerry Davis"
}
]
}, {
"archive": "Only stills and/or fragments exist",
"name": "Episode 3",
"airdate": "25 February 1967",
"overview": "Trying to take his companions to Mars, the Doctor instead ends up on the Moon in the year 2070. Earth's weather is controlled by means of gravity waves directed from an internationally-run Moonbase, but the staff of the Moonbase are suffering from a mysterious outbreak of plague, and moments after the Doctor and his friends enter the entire Moonbase is placed under quarantine. The Doctor offers to help find a cure for the plague, which he suspects is no plague at all – and he's right. The base's food supplies have in fact been poisoned by Cybermen from the colony world Telos, who intend to seize control of the Graviton and use it to destroy the Earth – not as revenge for the destruction of Mondas, but simply and logically to eliminate a potential threat.",
"director": "Morris Barry",
"writers": [
{
"name": "Kit Pedler"
}, {
"name": "Gerry Davis"
}
]
}, {
"archive": "16mm t/r",
"name": "Episode 4",
"airdate": "4 March 1967",
"overview": "Trying to take his companions to Mars, the Doctor instead ends up on the Moon in the year 2070. Earth's weather is controlled by means of gravity waves directed from an internationally-run Moonbase, but the staff of the Moonbase are suffering from a mysterious outbreak of plague, and moments after the Doctor and his friends enter the entire Moonbase is placed under quarantine. The Doctor offers to help find a cure for the plague, which he suspects is no plague at all – and he's right. The base's food supplies have in fact been poisoned by Cybermen from the colony world Telos, who intend to seize control of the Graviton and use it to destroy the Earth – not as revenge for the destruction of Mondas, but simply and logically to eliminate a potential threat.",
"director": "Morris Barry",
"writers": [
{
"name": "Kit Pedler"
}, {
"name": "Gerry Davis"
}
]
}
]
}
}, {
"name": "The Macra Terror",
"airdate": "11 March 1967 - 1 April 1967",
"production_code": "JJ",
"overview": "The Doctor and his companions arrive at a planet in Earth's colonial future, where they discover that the inhabitants are being menaced by giant crabs called the Macra. ",
"companions": {
"companion": [
{
"character": "Polly",
"died": "no",
"left": "no",
"left_behind": "no"
}, {
"character": "Ben Jackson",
"died": "no",
"left": "no",
"left_behind": "no"
}, {
"character": "Jamie McCrimmon",
"died": "no",
"left": "no",
"left_behind": "no"
}
]
},
"enemies": {
"enemy": [
{
"enemy": "The Macra",
"actor": [
{
"name": "Robert Jewell"
}
]
}
]
},
"episodes": {
"episode": [
{
"archive": "Only stills and/or fragments exist",
"name": "Episode 1",
"airdate": "11 March 1967",
"overview": "The TARDIS materialises in a human colony which is run like a giant holiday camp, where everybody is happy all round and fun and games are the order of the day. But a madman named Medok claims that the camp is stalked at night by hideous monsters, and as the Doctor learns more about the camp he realises that the people here risk their lives daily to mine a dangerously toxic natural gas – and yet nobody knows what it's for. His investigation attempt hits a snag when Ben is brainwashed by the colony's subliminal conditioning, and turns in his friends for acting against colony interests. In fact, the colony is under the control of the Macra, giant crab-like insects who are using the brainwashed humans to mine the gas they need to survive. It's up to the Doctor and his friends to prove the truth and free the colonists from a slavery they don't even know they're suffering.",
"director": "John Howard Davies",
"writers": [
{
"name": "Ian Stuart Black"
}
]
}, {
"archive": "Only stills and/or fragments exist",
"name": "Episode 2",
"airdate": "18 March 1967",
"overview": "The TARDIS materialises in a human colony which is run like a giant holiday camp, where everybody is happy all round and fun and games are the order of the day. But a madman named Medok claims that the camp is stalked at night by hideous monsters, and as the Doctor learns more about the camp he realises that the people here risk their lives daily to mine a dangerously toxic natural gas – and yet nobody knows what it's for. His investigation attempt hits a snag when Ben is brainwashed by the colony's subliminal conditioning, and turns in his friends for acting against colony interests. In fact, the colony is under the control of the Macra, giant crab-like insects who are using the brainwashed humans to mine the gas they need to survive. It's up to the Doctor and his friends to prove the truth and free the colonists from a slavery they don't even know they're suffering.",
"director": "John Howard Davies",
"writers": [
{
"name": "Ian Stuart Black"
}
]
}, {
"archive": "Only stills and/or fragments exist",
"name": "Episode 3",
"airdate": "25 March 1967",
"overview": "The TARDIS materialises in a human colony which is run like a giant holiday camp, where everybody is happy all round and fun and games are the order of the day. But a madman named Medok claims that the camp is stalked at night by hideous monsters, and as the Doctor learns more about the camp he realises that the people here risk their lives daily to mine a dangerously toxic natural gas – and yet nobody knows what it's for. His investigation attempt hits a snag when Ben is brainwashed by the colony's subliminal conditioning, and turns in his friends for acting against colony interests. In fact, the colony is under the control of the Macra, giant crab-like insects who are using the brainwashed humans to mine the gas they need to survive. It's up to the Doctor and his friends to prove the truth and free the colonists from a slavery they don't even know they're suffering.",
"director": "John Howard Davies",
"writers": [
{
"name": "Ian Stuart Black"
}
]
}, {
"archive": "Only stills and/or fragments exist",
"name": "Episode 4",
"airdate": "1 April 1967",
"overview": "The TARDIS materialises in a human colony which is run like a giant holiday camp, where everybody is happy all round and fun and games are the order of the day. But a madman named Medok claims that the camp is stalked at night by hideous monsters, and as the Doctor learns more about the camp he realises that the people here risk their lives daily to mine a dangerously toxic natural gas – and yet nobody knows what it's for. His investigation attempt hits a snag when Ben is brainwashed by the colony's subliminal conditioning, and turns in his friends for acting against colony interests. In fact, the colony is under the control of the Macra, giant crab-like insects who are using the brainwashed humans to mine the gas they need to survive. It's up to the Doctor and his friends to prove the truth and free the colonists from a slavery they don't even know they're suffering.",
"director": "John Howard Davies",
"writers": [
{
"name": "Ian Stuart Black"
}
]
}
]
}
}, {
"name": "The Faceless Ones",
"airdate": "8 April 1967 - 13 May 1967",
"production_code": "KK",
"overview": "After the TARDIS lands on the runway at Gatwick Airport, the Doctor and his companions find out that aliens are stealing the identities of travellers. ",
"companions": {
"companion": [
{
"character": "Polly",
"died": "no",
"left": "yes",
"left_behind": "no"
}, {
"character": "Ben Jackson",
"died": "no",
"left": "yes",
"left_behind": "no"
}, {
"character": "Jamie McCrimmon",
"died": "no",
"left": "no",
"left_behind": "no"
}
]
},
"enemies": {
"enemy": [
{
"enemy": "The Chameleons",
"actor": [
{
"name": "George Selway"
}, {
"name": "Victor Winding"
}, {
"name": "Donald Pickering"
}
]
}
]
},
"episodes": {
"episode": [
{
"archive": "16mm t/r",
"name": "Episode 1",
"airdate": "8 April 1967",
"overview": "The TARDIS materialises on a runway at Gatwick Airport, and when the Doctor and his friends scatter to avoid policemen, Polly witnesses a murder in an airplane hangar. She tells the Doctor, but is then kidnapped – and reappears shortly afterwards, bearing a passport from Zurich and claiming to have no idea who the Doctor is. Jamie meets a young woman named Samantha who's looking for her missing brother, and when a detective from Scotland Yard shows up looking for his missing colleague, the airport Commandant is forced to concede that something very odd is going on. The Doctor soon discovers that \"Chameleon Tours\", ostensibly offering cheap package tours for students and hitch-hiking youths, is in fact a front for a massive kidnapping operation. The alien Chameleons, who lost their personal identities in a cosmic accident, intend to steal the identities of the thousands of kidnapped youths, and the Doctor and his friends must stop them. When the situation is resolved, Ben and Polly discover that this is the very day on which they began travelling with the First Doctor, and choose to remain in London.",
"director": "Gerry Mill",
"writers": [
{
"name": "David Ellis"
}, {
"name": "Malcolm Hulke"
}
]
}, {
"archive": "Only stills and/or fragments exist",
"name": "Episode 2",
"airdate": "15 April 1967",
"overview": "The TARDIS materialises on a runway at Gatwick Airport, and when the Doctor and his friends scatter to avoid policemen, Polly witnesses a murder in an airplane hangar. She tells the Doctor, but is then kidnapped – and reappears shortly afterwards, bearing a passport from Zurich and claiming to have no idea who the Doctor is. Jamie meets a young woman named Samantha who's looking for her missing brother, and when a detective from Scotland Yard shows up looking for his missing colleague, the airport Commandant is forced to concede that something very odd is going on. The Doctor soon discovers that \"Chameleon Tours\", ostensibly offering cheap package tours for students and hitch-hiking youths, is in fact a front for a massive kidnapping operation. The alien Chameleons, who lost their personal identities in a cosmic accident, intend to steal the identities of the thousands of kidnapped youths, and the Doctor and his friends must stop them. When the situation is resolved, Ben and Polly discover that this is the very day on which they began travelling with the First Doctor, and choose to remain in London.",
"director": "Gerry Mill",
"writers": [
{
"name": "David Ellis"
}, {
"name": "Malcolm Hulke"
}
]
}, {
"archive": "16mm t/r",
"name": "Episode 3",
"airdate": "22 April 1967",
"overview": "The TARDIS materialises on a runway at Gatwick Airport, and when the Doctor and his friends scatter to avoid policemen, Polly witnesses a murder in an airplane hangar. She tells the Doctor, but is then kidnapped – and reappears shortly afterwards, bearing a passport from Zurich and claiming to have no idea who the Doctor is. Jamie meets a young woman named Samantha who's looking for her missing brother, and when a detective from Scotland Yard shows up looking for his missing colleague, the airport Commandant is forced to concede that something very odd is going on. The Doctor soon discovers that \"Chameleon Tours\", ostensibly offering cheap package tours for students and hitch-hiking youths, is in fact a front for a massive kidnapping operation. The alien Chameleons, who lost their personal identities in a cosmic accident, intend to steal the identities of the thousands of kidnapped youths, and the Doctor and his friends must stop them. When the situation is resolved, Ben and Polly discover that this is the very day on which they began travelling with the First Doctor, and choose to remain in London.",
"director": "Gerry Mill",
"writers": [
{
"name": "David Ellis"
}, {
"name": "Malcolm Hulke"
}
]
}, {
"archive": "Only stills and/or fragments exist",
"name": "Episode 4",
"airdate": "29 April 1967",
"overview": "The TARDIS materialises on a runway at Gatwick Airport, and when the Doctor and his friends scatter to avoid policemen, Polly witnesses a murder in an airplane hangar. She tells the Doctor, but is then kidnapped – and reappears shortly afterwards, bearing a passport from Zurich and claiming to have no idea who the Doctor is. Jamie meets a young woman named Samantha who's looking for her missing brother, and when a detective from Scotland Yard shows up looking for his missing colleague, the airport Commandant is forced to concede that something very odd is going on. The Doctor soon discovers that \"Chameleon Tours\", ostensibly offering cheap package tours for students and hitch-hiking youths, is in fact a front for a massive kidnapping operation. The alien Chameleons, who lost their personal identities in a cosmic accident, intend to steal the identities of the thousands of kidnapped youths, and the Doctor and his friends must stop them. When the situation is resolved, Ben and Polly discover that this is the very day on which they began travelling with the First Doctor, and choose to remain in London.",
"director": "Gerry Mill",
"writers": [
{
"name": "David Ellis"
}, {
"name": "Malcolm Hulke"
}
]
}, {
"archive": "Only stills and/or fragments exist",
"name": "Episode 5",
"airdate": "6 May 1967",
"overview": "The TARDIS materialises on a runway at Gatwick Airport, and when the Doctor and his friends scatter to avoid policemen, Polly witnesses a murder in an airplane hangar. She tells the Doctor, but is then kidnapped – and reappears shortly afterwards, bearing a passport from Zurich and claiming to have no idea who the Doctor is. Jamie meets a young woman named Samantha who's looking for her missing brother, and when a detective from Scotland Yard shows up looking for his missing colleague, the airport Commandant is forced to concede that something very odd is going on. The Doctor soon discovers that \"Chameleon Tours\", ostensibly offering cheap package tours for students and hitch-hiking youths, is in fact a front for a massive kidnapping operation. The alien Chameleons, who lost their personal identities in a cosmic accident, intend to steal the identities of the thousands of kidnapped youths, and the Doctor and his friends must stop them. When the situation is resolved, Ben and Polly discover that this is the very day on which they began travelling with the First Doctor, and choose to remain in London.",
"director": "Gerry Mill",
"writers": [
{
"name": "David Ellis"
}, {
"name": "Malcolm Hulke"
}
]
}, {
"archive": "Only stills and/or fragments exist",
"name": "Episode 6",
"airdate": "13 May 1967",
"overview": "The TARDIS materialises on a runway at Gatwick Airport, and when the Doctor and his friends scatter to avoid policemen, Polly witnesses a murder in an airplane hangar. She tells the Doctor, but is then kidnapped – and reappears shortly afterwards, bearing a passport from Zurich and claiming to have no idea who the Doctor is. Jamie meets a young woman named Samantha who's looking for her missing brother, and when a detective from Scotland Yard shows up looking for his missing colleague, the airport Commandant is forced to concede that something very odd is going on. The Doctor soon discovers that \"Chameleon Tours\", ostensibly offering cheap package tours for students and hitch-hiking youths, is in fact a front for a massive kidnapping operation. The alien Chameleons, who lost their personal identities in a cosmic accident, intend to steal the identities of the thousands of kidnapped youths, and the Doctor and his friends must stop them. When the situation is resolved, Ben and Polly discover that this is the very day on which they began travelling with the First Doctor, and choose to remain in London.",
"director": "Gerry Mill",
"writers": [
{
"name": "David Ellis"
}, {
"name": "Malcolm Hulke"
}
]
}
]
}
}, {
"name": "The Evil of the Daleks",
"airdate": "20 May 1967 - 1 July 1967",
"production_code": "LL",
"overview": "While trying to retrieve the TARDIS, the Doctor and Jamie are transported back in time to the 19th century by a professor working for the Daleks; the Daleks aim to use the Doctor's knowledge to give the Daleks human intelligence, but the plan backfires spectacularly. ",
"companions": {
"companion": [
{
"character": "Jamie McCrimmon",
"died": "no",
"left": "no",
"left_behind": "no"
}, {
"character": "Victoria Waterfield",
"died": "no",
"left": "no",
"left_behind": "no"
}
]
},
"enemies": {
"enemy": [
{
"enemy": "Daleks",
"actor": [
{
"name": "Robert Jewell"
}, {
"name": "Gerald Taylor"
}, {
"name": "John Scott Martin"
}, {
"name": "Murphy Grumbar"
}, {
"name": "Ken Tyllsen"
}
]
}
]
},
"episodes": {
"episode": [
{
"archive": "Only stills and/or fragments exist",
"name": "Episode 1",
"airdate": "20 May 1967",
"overview": "The TARDIS is stolen from Gatwick Airport, and when the Doctor and Jamie investigate they stumble into a trap set by Edward Waterfield, a time-traveller from the year 1866. His daughter Victoria has been kidnapped by the Daleks, in order to force him to lure the Doctor into their clutches. The Daleks have realised that human beings possess unique qualities which have enabled them to defeat the Daleks on every occasion the two races have fought; thus, the Daleks order the Doctor to monitor Jamie while he attempts to rescue Victoria, and synthesise the elusive Human Factor, which they intend to add to their own genetic makeup. The Doctor does so, and as he'd hoped, the test Daleks imbued with the Human Factor become playful and friendly. However, the Dalek Emperor then reveals that his real intention was to isolate the Dalek Factor and force the Doctor to spread it to the rest of humanity. The Emperor's plan fails, however, as the Doctor is not human and the Dalek Factor has no effect on him. The Doctor therefore tricks the Emperor into administring the Human Factor to several more Daleks, who begin to question authority and rebel against the Emperor. Waterfield dies saving the Doctor's life, and the Doctor and Jamie take Victoria with them as they depart, leaving the Dalek factions to fight each other to the death.",
"director": "Derek Martinus",
"writers": [
{
"name": "David Whitaker"
}
]
}, {
"archive": "16mm t/r",
"name": "Episode 2",
"airdate": "27 May 1967",
"overview": "The TARDIS is stolen from Gatwick Airport, and when the Doctor and Jamie investigate they stumble into a trap set by Edward Waterfield, a time-traveller from the year 1866. His daughter Victoria has been kidnapped by the Daleks, in order to force him to lure the Doctor into their clutches. The Daleks have realised that human beings possess unique qualities which have enabled them to defeat the Daleks on every occasion the two races have fought; thus, the Daleks order the Doctor to monitor Jamie while he attempts to rescue Victoria, and synthesise the elusive Human Factor, which they intend to add to their own genetic makeup. The Doctor does so, and as he'd hoped, the test Daleks imbued with the Human Factor become playful and friendly. However, the Dalek Emperor then reveals that his real intention was to isolate the Dalek Factor and force the Doctor to spread it to the rest of humanity. The Emperor's plan fails, however, as the Doctor is not human and the Dalek Factor has no effect on him. The Doctor therefore tricks the Emperor into administring the Human Factor to several more Daleks, who begin to question authority and rebel against the Emperor. Waterfield dies saving the Doctor's life, and the Doctor and Jamie take Victoria with them as they depart, leaving the Dalek factions to fight each other to the death.",
"director": "Derek Martinus",
"writers": [
{
"name": "David Whitaker"
}
]
}, {
"archive": "Only stills and/or fragments exist",
"name": "Episode 3",
"airdate": "3 June 1967",
"overview": "The TARDIS is stolen from Gatwick Airport, and when the Doctor and Jamie investigate they stumble into a trap set by Edward Waterfield, a time-traveller from the year 1866. His daughter Victoria has been kidnapped by the Daleks, in order to force him to lure the Doctor into their clutches. The Daleks have realised that human beings possess unique qualities which have enabled them to defeat the Daleks on every occasion the two races have fought; thus, the Daleks order the Doctor to monitor Jamie while he attempts to rescue Victoria, and synthesise the elusive Human Factor, which they intend to add to their own genetic makeup. The Doctor does so, and as he'd hoped, the test Daleks imbued with the Human Factor become playful and friendly. However, the Dalek Emperor then reveals that his real intention was to isolate the Dalek Factor and force the Doctor to spread it to the rest of humanity. The Emperor's plan fails, however, as the Doctor is not human and the Dalek Factor has no effect on him. The Doctor therefore tricks the Emperor into administring the Human Factor to several more Daleks, who begin to question authority and rebel against the Emperor. Waterfield dies saving the Doctor's life, and the Doctor and Jamie take Victoria with them as they depart, leaving the Dalek factions to fight each other to the death.",
"director": "Derek Martinus",
"writers": [
{
"name": "David Whitaker"
}
]
}, {
"archive": "Only stills and/or fragments exist",
"name": "Episode 4",
"airdate": "10 June 1967",
"overview": "The TARDIS is stolen from Gatwick Airport, and when the Doctor and Jamie investigate they stumble into a trap set by Edward Waterfield, a time-traveller from the year 1866. His daughter Victoria has been kidnapped by the Daleks, in order to force him to lure the Doctor into their clutches. The Daleks have realised that human beings possess unique qualities which have enabled them to defeat the Daleks on every occasion the two races have fought; thus, the Daleks order the Doctor to monitor Jamie while he attempts to rescue Victoria, and synthesise the elusive Human Factor, which they intend to add to their own genetic makeup. The Doctor does so, and as he'd hoped, the test Daleks imbued with the Human Factor become playful and friendly. However, the Dalek Emperor then reveals that his real intention was to isolate the Dalek Factor and force the Doctor to spread it to the rest of humanity. The Emperor's plan fails, however, as the Doctor is not human and the Dalek Factor has no effect on him. The Doctor therefore tricks the Emperor into administring the Human Factor to several more Daleks, who begin to question authority and rebel against the Emperor. Waterfield dies saving the Doctor's life, and the Doctor and Jamie take Victoria with them as they depart, leaving the Dalek factions to fight each other to the death.",
"director": "Derek Martinus",
"writers": [
{
"name": "David Whitaker"
}
]
}, {
"archive": "Only stills and/or fragments exist",
"name": "Episode 5",
"airdate": "17 June 1967",
"overview": "The TARDIS is stolen from Gatwick Airport, and when the Doctor and Jamie investigate they stumble into a trap set by Edward Waterfield, a time-traveller from the year 1866. His daughter Victoria has been kidnapped by the Daleks, in order to force him to lure the Doctor into their clutches. The Daleks have realised that human beings possess unique qualities which have enabled them to defeat the Daleks on every occasion the two races have fought; thus, the Daleks order the Doctor to monitor Jamie while he attempts to rescue Victoria, and synthesise the elusive Human Factor, which they intend to add to their own genetic makeup. The Doctor does so, and as he'd hoped, the test Daleks imbued with the Human Factor become playful and friendly. However, the Dalek Emperor then reveals that his real intention was to isolate the Dalek Factor and force the Doctor to spread it to the rest of humanity. The Emperor's plan fails, however, as the Doctor is not human and the Dalek Factor has no effect on him. The Doctor therefore tricks the Emperor into administring the Human Factor to several more Daleks, who begin to question authority and rebel against the Emperor. Waterfield dies saving the Doctor's life, and the Doctor and Jamie take Victoria with them as they depart, leaving the Dalek factions to fight each other to the death.",
"director": "Derek Martinus",
"writers": [
{
"name": "David Whitaker"
}
]
}, {
"archive": "Only stills and/or fragments exist",
"name": "Episode 6",
"airdate": "24 June 1967",
"overview": "The TARDIS is stolen from Gatwick Airport, and when the Doctor and Jamie investigate they stumble into a trap set by Edward Waterfield, a time-traveller from the year 1866. His daughter Victoria has been kidnapped by the Daleks, in order to force him to lure the Doctor into their clutches. The Daleks have realised that human beings possess unique qualities which have enabled them to defeat the Daleks on every occasion the two races have fought; thus, the Daleks order the Doctor to monitor Jamie while he attempts to rescue Victoria, and synthesise the elusive Human Factor, which they intend to add to their own genetic makeup. The Doctor does so, and as he'd hoped, the test Daleks imbued with the Human Factor become playful and friendly. However, the Dalek Emperor then reveals that his real intention was to isolate the Dalek Factor and force the Doctor to spread it to the rest of humanity. The Emperor's plan fails, however, as the Doctor is not human and the Dalek Factor has no effect on him. The Doctor therefore tricks the Emperor into administring the Human Factor to several more Daleks, who begin to question authority and rebel against the Emperor. Waterfield dies saving the Doctor's life, and the Doctor and Jamie take Victoria with them as they depart, leaving the Dalek factions to fight each other to the death.",
"director": "Derek Martinus",
"writers": [
{
"name": "David Whitaker"
}
]
}, {
"archive": "Only stills and/or fragments exist",
"name": "Episode 7",
"airdate": "1 July 1967",
"overview": "The TARDIS is stolen from Gatwick Airport, and when the Doctor and Jamie investigate they stumble into a trap set by Edward Waterfield, a time-traveller from the year 1866. His daughter Victoria has been kidnapped by the Daleks, in order to force him to lure the Doctor into their clutches. The Daleks have realised that human beings possess unique qualities which have enabled them to defeat the Daleks on every occasion the two races have fought; thus, the Daleks order the Doctor to monitor Jamie while he attempts to rescue Victoria, and synthesise the elusive Human Factor, which they intend to add to their own genetic makeup. The Doctor does so, and as he'd hoped, the test Daleks imbued with the Human Factor become playful and friendly. However, the Dalek Emperor then reveals that his real intention was to isolate the Dalek Factor and force the Doctor to spread it to the rest of humanity. The Emperor's plan fails, however, as the Doctor is not human and the Dalek Factor has no effect on him. The Doctor therefore tricks the Emperor into administring the Human Factor to several more Daleks, who begin to question authority and rebel against the Emperor. Waterfield dies saving the Doctor's life, and the Doctor and Jamie take Victoria with them as they depart, leaving the Dalek factions to fight each other to the death.",
"director": "Derek Martinus",
"writers": [
{
"name": "David Whitaker"
}
]
}
]
}
}
]
}
}, {
"season": "5",
"from": "1967",
"to": "1968",
"classic": "yes",
"new": "no",
"serials": {
"serial": [
{
"name": "The Tomb of the Cybermen",
"airdate": "2 September 1967 - 23 September 1967",
"production_code": "MM",
"overview": "The TARDIS crew arrives on Telos where they find an expedition excavating the Tomb of the Cybermen. Inside the tomb, they find frozen Cybermen who are soon to awake.",
"companions": {
"companion": [
{
"character": "Jamie McCrimmon",
"died": "no",
"left": "no",
"left_behind": "no"
}, {
"character": "Victoria Waterfield",
"died": "no",
"left": "no",
"left_behind": "no"
}
]
},
"enemies": {
"enemy": [
{
"enemy": "Cybermen",
"actor": [
{
"name": "Michael Kilgarriff"
}, {
"name": "Hans de Vries"
}, {
"name": "Tony Harwood"
}, {
"name": "John Hogan"
}, {
"name": "Richard Kerley"
}, {
"name": "Ronald Lee"
}, {
"name": "Charles Pemberton"
}, {
"name": "Kenneth Seeger"
}, {
"name": "Reg Whitehead"
}
]
}, {
"enemy": "Kaftan",
"actor": [
{
"name": "Shirley Cooklin"
}
]
}, {
"enemy": "Eric Klieg",
"actor": [
{
"name": "George Pastell"
}
]
}, {
"enemy": "Toberman",
"actor": [
{
"name": "Roy Stewart"
}
]
}
]
},
"episodes": {
"episode": [
{
"archive": "16mm t/r",
"name": "Episode 1",
"airdate": "2 September 1967",
"overview": "A team of archaeologists travels to the planet Telos, the home of the Cybermen, to excavate the tombs of the long-extinct cybernetic race. At least, it's assumed that they're extinct. The Doctor isn't sure that the tombs should be disturbed, but he soon comes to suspect that some of the \"archaeologists\" have an agenda far more dangerous than the team leader, Parry, suspects. In order to find out what the sinister Kleig and Kaftan are really up to, the Doctor helps the archaeologists to enter the tombs – where they find that the Cybermen are only dormant, not dead, and that Kleig and Kaftan intend to revive them. But they have underestimated the power of the Cybermen, and only the Doctor can save the archaeologists from being transformed into Cybermen themselves.",
"director": "Morris Barry",
"writers": [
{
"name": "Kit Pedler"
}, {
"name": "Gerry Davis"
}
]
}, {
"archive": "16mm t/r",
"name": "Episode 2",
"airdate": "9 September 1967",
"overview": "A team of archaeologists travels to the planet Telos, the home of the Cybermen, to excavate the tombs of the long-extinct cybernetic race. At least, it's assumed that they're extinct. The Doctor isn't sure that the tombs should be disturbed, but he soon comes to suspect that some of the \"archaeologists\" have an agenda far more dangerous than the team leader, Parry, suspects. In order to find out what the sinister Kleig and Kaftan are really up to, the Doctor helps the archaeologists to enter the tombs – where they find that the Cybermen are only dormant, not dead, and that Kleig and Kaftan intend to revive them. But they have underestimated the power of the Cybermen, and only the Doctor can save the archaeologists from being transformed into Cybermen themselves.",
"director": "Morris Barry",
"writers": [
{
"name": "Kit Pedler"
}, {
"name": "Gerry Davis"
}
]
}, {
"archive": "16mm t/r",
"name": "Episode 3",
"airdate": "16 September 1967",
"overview": "A team of archaeologists travels to the planet Telos, the home of the Cybermen, to excavate the tombs of the long-extinct cybernetic race. At least, it's assumed that they're extinct. The Doctor isn't sure that the tombs should be disturbed, but he soon comes to suspect that some of the \"archaeologists\" have an agenda far more dangerous than the team leader, Parry, suspects. In order to find out what the sinister Kleig and Kaftan are really up to, the Doctor helps the archaeologists to enter the tombs – where they find that the Cybermen are only dormant, not dead, and that Kleig and Kaftan intend to revive them. But they have underestimated the power of the Cybermen, and only the Doctor can save the archaeologists from being transformed into Cybermen themselves.",
"director": "Morris Barry",
"writers": [
{
"name": "Kit Pedler"
}, {
"name": "Gerry Davis"
}
]
}, {
"archive": "16mm t/r",
"name": "Episode 4",
"airdate": "23 September 1967",
"overview": "A team of archaeologists travels to the planet Telos, the home of the Cybermen, to excavate the tombs of the long-extinct cybernetic race. At least, it's assumed that they're extinct. The Doctor isn't sure that the tombs should be disturbed, but he soon comes to suspect that some of the \"archaeologists\" have an agenda far more dangerous than the team leader, Parry, suspects. In order to find out what the sinister Kleig and Kaftan are really up to, the Doctor helps the archaeologists to enter the tombs – where they find that the Cybermen are only dormant, not dead, and that Kleig and Kaftan intend to revive them. But they have underestimated the power of the Cybermen, and only the Doctor can save the archaeologists from being transformed into Cybermen themselves.",
"director": "Morris Barry",
"writers": [
{
"name": "Kit Pedler"
}, {
"name": "Gerry Davis"
}
]
}
]
}
}, {
"name": "The Abominable Snowmen",
"airdate": "30 September 1967 - 4 November 1967",
"production_code": "NN",
"overview": "The TARDIS crew arrive on a cold and windy hillside. After exploring, the Doctor—wearing an extremely furry coat—is mistaken for what they think could be ... a Yeti. ",
"companions": {
"companion": [
{
"character": "Jamie McCrimmon",
"died": "no",
"left": "no",
"left_behind": "no"
}, {
"character": "Victoria Waterfield",
"died": "no",
"left": "no",
"left_behind": "no"
}
]
},
"enemies": {
"enemy": [
{
"enemy": "The Great Intelligence",
"actor": [
{
"name": "Wolfe Morris"
}
]
}, {
"enemy": "Yeti",
"actor": [
{
"name": "Reg Whitehead"
}, {
"name": "Tony Harwood"
}, {
"name": "Richard Kerley"
}, {
"name": "John Hogan"
}
]
}
]
},
"episodes": {
"episode": [
{
"archive": "Only stills and/or fragments exist",
"name": "Episode 1",