-
Notifications
You must be signed in to change notification settings - Fork 0
/
all_doctors.json
13784 lines (13775 loc) · 612 KB
/
all_doctors.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": "first",
"from": "1963",
"to": "2013",
"first_serial": "An Unearthly Child",
"last_serial": "The Day of The Doctor",
"actor": "William Hartnell",
"appearances": "29 stories (134 episodes)",
"sonic": "no",
"tardis_interior": "http://www.thedoctorwhosite.co.uk/tardis/interior/",
"tardis_exterior": "http://www.thedoctorwhosite.co.uk/tardis/exterior/1963-tardis/",
"costume": "Edwardian grandfather",
"description": "Originally a very difficult and curmudgeonly person, the First Doctor matured from an apparent selfishness and became more inviting. His happier, kinder characteristics fostered when he began to acquire an entourage of companions to accompany him throughout the wonders of the fourth dimension and learned to be a caregiver with a sense of justice in a universe afflicted by evils.",
"first_words": "What are you doing here?",
"last_words": "Ah yes, thank you. Keep warm.",
"seasons": {
"season": [
{
"season": "1",
"from": "1963",
"to": "1964",
"classic": "yes",
"new": "no",
"serials": {
"serial": [
{
"name": "The Pilot Episode",
"airdate": "26 August 1991",
"production_code": "A",
"overview": "The first pilot episode of The Unearthly Child.",
"companions": {
"companion": [
{
"character": "Susan Foreman",
"died": "no",
"left": "no",
"left_behind": "no"
}, {
"character": "Barbara Wright",
"died": "no",
"left": "no",
"left_behind": "no"
}, {
"character": "Ian Chesterton",
"died": "no",
"left": "no",
"left_behind": "no"
}
]
},
"enemies": {
"enemy": []
},
"episodes": {
"episode": [
{
"archive": "16mm t/r",
"name": "Original Pilot, version 1",
"airdate": "26 August 1991",
"overview": "The first episode, \"An Unearthly Child\", was originally recorded a month before full recording on the series began. However, the initial recording was bedevilled with technical problems and errors made during the performance. Two versions of the scene set in the TARDIS were recorded, along with an aborted first attempt to start the second version.",
"director": "Waris Hussein",
"writers": [
{
"name": "Anthony Coburn"
}
]
}, {
"archive": "16mm t/r",
"name": "Original Pilot, version 2",
"airdate": "unaired",
"overview": "An unedited studio recording of the pilot \"An Unearthly Child\", including all takes of the second part of the show.",
"director": "Waris Hussein",
"writers": [
{
"name": "Anthony Coburn"
}
]
}
]
}
}, {
"name": "An Unearthly Child",
"airdate": "23 November - 14 December 1963",
"production_code": "A",
"overview": "Schoolteachers Ian Chesterton and Barbara Wright are concerned about one of their pupils, Susan Foreman, who seems to have a very alien outlook on England. They have come to her listed address to investigate. They arrive in a junkyard and find a police box, which proves to be no ordinary police box. When Ian and Barbara enter, they discover it to be much bigger on the inside than the outside. In the TARDIS is Susan and her grandfather, the Doctor. Fearing that Barbara and Ian will give away the secret of the TARDIS, he kidnaps them and takes the machine to the Stone Age, where they will have to fight for their lives.",
"companions": {
"companion": [
{
"character": "Susan Foreman",
"died": "no",
"left": "no",
"left_behind": "no"
}, {
"character": "Barbara Wright",
"died": "no",
"left": "no",
"left_behind": "no"
}, {
"character": "Ian Chesterton",
"died": "no",
"left": "no",
"left_behind": "no"
}
]
},
"enemies": {
"enemy": [
{
"enemy": "Kal",
"actor": [
{
"name": "Jeremy Young"
}
]
}
]
},
"episodes": {
"episode": [
{
"archive": "16mm t/r",
"name": "An Unearthly Child",
"airdate": "23 November 1963",
"overview": "London, 1963. Schoolteachers Ian Chesterton and Barbara Wright are perplexed by the behaviour of one of their pupils, Susan Foreman. Her knowledge of science and history exceeds theirs, yet she seems totally ignorant of many common aspects of everyday life. They follow her to her home address, a junkyard with a police telephone box standing in it, and encounter her grandfather, the enigmatic Doctor. When they force their way past him into the police box, Susan's secret is revealed: she and the Doctor are aliens, and the police box is a time machine, the TARDIS, capable of visiting any point in the universe at any moment in time…",
"director": "Waris Hussein",
"writers": [
{
"name": "Anthony Coburn"
}
]
}, {
"archive": "16mm t/r",
"name": "The Cave of Skulls",
"airdate": "30 November 1963",
"overview": "Earth, 100,000 B.C. The enigmatic Doctor, afraid that schoolteachers Ian Chesterton and Barbara Wright will reveal his secrets to the people of 20th century Earth, has taken them and his granddaughter Susan back to the dawn of human history. There, the four travellers are dragged into the savage politics of a tribe of cavemen who have lost the secret of making fire…",
"director": "Waris Hussein",
"writers": [
{
"name": "Anthony Coburn"
}
]
}, {
"archive": "16mm t/r",
"name": "The Forest of Fear",
"airdate": "7 December 1963",
"overview": "Prisoners of the earliest humans, the TARDIS crew are caught in a deadly power play for leadership of the tribe.",
"director": "Waris Hussein",
"writers": [
{
"name": "Anthony Coburn"
}
]
}, {
"archive": "16mm t/r",
"name": "The Firemaker",
"airdate": "14 December 1963",
"overview": "The TARDIS crew must make fire for the early humans to stay alive. But once they do, they may not be allowed to leave!",
"director": "Waris Hussein",
"writers": [
{
"name": "Anthony Coburn"
}
]
}
]
}
}, {
"name": "The Daleks",
"airdate": "21 December 1963 - 1 February 1964",
"production_code": "B",
"overview": "The TARDIS lands in a petrified jungle, where they find an advanced city and decide to explore it. Barbara becomes separated from her colleagues, threatened by an unseen creature. Before long, the entire crew is captured by the Daleks, and learn they are in the middle of a war between the Daleks and the Thals.",
"companions": {
"companion": [
{
"character": "Susan Foreman",
"died": "no",
"left": "no",
"left_behind": "no"
}, {
"character": "Barbara Wright",
"died": "no",
"left": "no",
"left_behind": "no"
}, {
"character": "Ian Chesterton",
"died": "no",
"left": "no",
"left_behind": "no"
}
]
},
"enemies": {
"enemy": [
{
"enemy": "Daleks",
"actor": [
{
"name": "Robert Jewell"
}, {
"name": "Kevin Manser"
}, {
"name": "Michael Summerton"
}, {
"name": "Gerald Taylor"
}, {
"name": "Peter Murphy"
}
]
}
]
},
"episodes": {
"episode": [
{
"archive": "Only stills and/or fragments exist",
"name": "The Dead Planet, original recorded version",
"airdate": "Unaired",
"overview": "Time Unknown, Planet Unknown. The TARDIS lands in an eerie petrified forest overlooking a magnificent steel city. The Doctor wants to explore the city - but what is waiting there?",
"director": "Richard Martin & Christopher Barry",
"writers": [
{
"name": "Terry Nation"
}
]
}, {
"archive": "16mm t/r",
"name": "The Dead Planet, remounted version",
"airdate": "21 December 1963",
"overview": "Time Unknown, Planet Unknown. The TARDIS lands in an eerie petrified forest overlooking a magnificent steel city. The Doctor wants to explore the city - but what is waiting there?",
"director": "Richard Martin & Christopher Barry",
"writers": [
{
"name": "Terry Nation"
}
]
}, {
"archive": "16mm t/r",
"name": "The Survivors",
"airdate": "28 December 1963",
"overview": "The dead planet is not uninhabited after all. The Doctor is about to meet what will become his greatest enemies. And he and his crew are dying of radiation sickness.",
"director": "Richard Martin & Christopher Barry",
"writers": [
{
"name": "Terry Nation"
}
]
}, {
"archive": "16mm t/r",
"name": "The Escape",
"airdate": "4 January 1964",
"overview": "Imprisoned on Skaro by the scheming Daleks, the Doctor and his companions work to escape their clutches.",
"director": "Richard Martin & Christopher Barry",
"writers": [
{
"name": "Terry Nation"
}
]
}, {
"archive": "16mm t/r",
"name": "The Ambush",
"airdate": "11 January 1964",
"overview": "The time travellers work desperately to both escape the Dalek city and prevent a bloody massacre.",
"director": "Richard Martin & Christopher Barry",
"writers": [
{
"name": "Terry Nation"
}
]
}, {
"archive": "16mm t/r",
"name": "The Expedition",
"airdate": "18 January 1964",
"overview": "The time travellers have escaped from the Daleks, but left a vital piece of the TARDIS behind. Getting it back will mean pushing the Thals to mount a dangerous operation.",
"director": "Richard Martin & Christopher Barry",
"writers": [
{
"name": "Terry Nation"
}
]
}, {
"archive": "16mm t/r",
"name": "The Ordeal",
"airdate": "25 January 1964",
"overview": "Ian, Barbara and the Thals struggle through the caves to reach the Dalek city. Will they get there in time? Is there even a way through the treacherous caves? And what are the Daleks planning?",
"director": "Richard Martin & Christopher Barry",
"writers": [
{
"name": "Terry Nation"
}
]
}, {
"archive": "16mm t/r",
"name": "The Rescue",
"airdate": "1 February 1964",
"overview": "Time is running out as the Doctor and his companions try to defeat the Daleks before they wipe out all life on Skaro.",
"director": "Richard Martin & Christopher Barry",
"writers": [
{
"name": "Terry Nation"
}
]
}
]
}
}, {
"name": "The Edge of Destruction",
"airdate": "8 - 15 February 1964",
"production_code": "C",
"overview": "The Doctor, while attempting to correct the TARDIS's faulty navigation circuits, causes a small explosion. The Doctor, Barbara, Ian and Susan are all temporarily rendered unconscious. After they awake, Ian and Susan appear to have slight cases of amnesia and everyone begins to act strangely.",
"companions": {
"companion": [
{
"character": "Susan Foreman",
"died": "no",
"left": "no",
"left_behind": "no"
}, {
"character": "Barbara Wright",
"died": "no",
"left": "no",
"left_behind": "no"
}, {
"character": "Ian Chesterton",
"died": "no",
"left": "no",
"left_behind": "no"
}
]
},
"enemies": {
"enemy": [
{
"enemy": " ",
"actor": [
{
"name": " "
}
]
}
]
},
"episodes": {
"episode": [
{
"archive": "16mm t/r",
"name": "The Edge of Destruction",
"airdate": "8 February 1964",
"overview": "A mysterious explosion has knocked the TARDIS into void. And in their confusion, the crew are turning on one another.",
"director": "Richard Martin & Frank Cox",
"writers": [
{
"name": "David Whitaker"
}
]
}, {
"archive": "16mm t/r",
"name": "The Brink of Disaster",
"airdate": "15 February 1964",
"overview": "The TARDIS is adrift, the crew turning on each other. Only by working together can they find their way out before they are destroyed.",
"director": "Richard Martin & Frank Cox",
"writers": [
{
"name": "David Whitaker"
}
]
}
]
}
}, {
"name": "Marco Polo",
"airdate": "22 February - 4 April 1964",
"production_code": "D",
"overview": "The TARDIS crew meet the real Marco Polo.",
"companions": {
"companion": [
{
"character": "Susan Foreman",
"died": "no",
"left": "no",
"left_behind": "no"
}, {
"character": "Barbara Wright",
"died": "no",
"left": "no",
"left_behind": "no"
}, {
"character": "Ian Chesterton",
"died": "no",
"left": "no",
"left_behind": "no"
}
]
},
"enemies": {
"enemy": [
{
"enemy": "Tegana",
"actor": [
{
"name": "Derren Nesbitt"
}
]
}
]
},
"episodes": {
"episode": [
{
"archive": "Only stills and/or fragments exist",
"name": "The Roof of the World",
"airdate": "22 February 1964",
"overview": "The TARDIS experiences a total power failure and is stranded in the Himalayas in the 13th century. The travellers are forced to join the caravan of the famous explorer, Marco Polo, in order to survive -- but Polo, fascinated by their claims that the TARDIS can fly through the air, seizes it on behalf of Kublai Khan in the hope that presenting the Khan with such a fabulous gift will convince him to let Polo return home to Venice. The travellers are forced to accompany Polo on his long trek across Asia to the Khan's court, but their many attempts to reclaim their property are foiled -- not just by Polo, but by the war lord Tegana, who is apparently on a mission of peace but has entirely different plans for dealing with Kublai Khan...",
"director": "Waris Hussein & John Crockett",
"writers": [
{
"name": "John Lucarotti"
}
]
},{
"archive": "Only stills and/or fragments exist",
"name": "The Singing Sands",
"airdate": "29 February 1964",
"overview": "The TARDIS experiences a total power failure and is stranded in the Himalayas in the 13th century. The travellers are forced to join the caravan of the famous explorer, Marco Polo, in order to survive -- but Polo, fascinated by their claims that the TARDIS can fly through the air, seizes it on behalf of Kublai Khan in the hope that presenting the Khan with such a fabulous gift will convince him to let Polo return home to Venice. The travellers are forced to accompany Polo on his long trek across Asia to the Khan's court, but their many attempts to reclaim their property are foiled -- not just by Polo, but by the war lord Tegana, who is apparently on a mission of peace but has entirely different plans for dealing with Kublai Khan...",
"director": "Waris Hussein & John Crockett",
"writers": [
{
"name": "John Lucarotti"
}
]
},{
"archive": "Only stills and/or fragments exist",
"name": "Five Hundred Eyes",
"airdate": "7 March 1964",
"overview": "The TARDIS experiences a total power failure and is stranded in the Himalayas in the 13th century. The travellers are forced to join the caravan of the famous explorer, Marco Polo, in order to survive -- but Polo, fascinated by their claims that the TARDIS can fly through the air, seizes it on behalf of Kublai Khan in the hope that presenting the Khan with such a fabulous gift will convince him to let Polo return home to Venice. The travellers are forced to accompany Polo on his long trek across Asia to the Khan's court, but their many attempts to reclaim their property are foiled -- not just by Polo, but by the war lord Tegana, who is apparently on a mission of peace but has entirely different plans for dealing with Kublai Khan...",
"director": "Waris Hussein & John Crockett",
"writers": [
{
"name": "John Lucarotti"
}
]
},{
"archive": "Only stills and/or fragments exist",
"name": "The Wall of Lies",
"airdate": "14 March 1964",
"overview": "The TARDIS experiences a total power failure and is stranded in the Himalayas in the 13th century. The travellers are forced to join the caravan of the famous explorer, Marco Polo, in order to survive -- but Polo, fascinated by their claims that the TARDIS can fly through the air, seizes it on behalf of Kublai Khan in the hope that presenting the Khan with such a fabulous gift will convince him to let Polo return home to Venice. The travellers are forced to accompany Polo on his long trek across Asia to the Khan's court, but their many attempts to reclaim their property are foiled -- not just by Polo, but by the war lord Tegana, who is apparently on a mission of peace but has entirely different plans for dealing with Kublai Khan...",
"director": "Waris Hussein & John Crockett",
"writers": [
{
"name": "John Lucarotti"
}
]
},{
"archive": "Only stills and/or fragments exist",
"name": "Rider From Shang-Tu",
"airdate": "21 March 1964",
"overview": "The TARDIS experiences a total power failure and is stranded in the Himalayas in the 13th century. The travellers are forced to join the caravan of the famous explorer, Marco Polo, in order to survive -- but Polo, fascinated by their claims that the TARDIS can fly through the air, seizes it on behalf of Kublai Khan in the hope that presenting the Khan with such a fabulous gift will convince him to let Polo return home to Venice. The travellers are forced to accompany Polo on his long trek across Asia to the Khan's court, but their many attempts to reclaim their property are foiled -- not just by Polo, but by the war lord Tegana, who is apparently on a mission of peace but has entirely different plans for dealing with Kublai Khan...",
"director": "Waris Hussein & John Crockett",
"writers": [
{
"name": "John Lucarotti"
}
]
},{
"archive": "Only stills and/or fragments exist",
"name": "Mighty Kublai Khan",
"airdate": "28 March 1964",
"overview": "The TARDIS experiences a total power failure and is stranded in the Himalayas in the 13th century. The travellers are forced to join the caravan of the famous explorer, Marco Polo, in order to survive -- but Polo, fascinated by their claims that the TARDIS can fly through the air, seizes it on behalf of Kublai Khan in the hope that presenting the Khan with such a fabulous gift will convince him to let Polo return home to Venice. The travellers are forced to accompany Polo on his long trek across Asia to the Khan's court, but their many attempts to reclaim their property are foiled -- not just by Polo, but by the war lord Tegana, who is apparently on a mission of peace but has entirely different plans for dealing with Kublai Khan...",
"director": "Waris Hussein & John Crockett",
"writers": [
{
"name": "John Lucarotti"
}
]
},{
"archive": "Only stills and/or fragments exist",
"name": "Assassin at Peking",
"airdate": "4 April 1964",
"overview": "The TARDIS experiences a total power failure and is stranded in the Himalayas in the 13th century. The travellers are forced to join the caravan of the famous explorer, Marco Polo, in order to survive -- but Polo, fascinated by their claims that the TARDIS can fly through the air, seizes it on behalf of Kublai Khan in the hope that presenting the Khan with such a fabulous gift will convince him to let Polo return home to Venice. The travellers are forced to accompany Polo on his long trek across Asia to the Khan's court, but their many attempts to reclaim their property are foiled -- not just by Polo, but by the war lord Tegana, who is apparently on a mission of peace but has entirely different plans for dealing with Kublai Khan...",
"director": "Waris Hussein & John Crockett",
"writers": [
{
"name": "John Lucarotti"
}
]
}
]
}
}, {
"name": "The Keys of Marinus",
"airdate": "11 April - 16 May 1964",
"production_code": "E",
"overview": "After arriving on a small island, the TARDIS crew go on a quest to find the five keys to Marinus. ",
"companions": {
"companion": [
{
"character": "Susan Foreman",
"died": "no",
"left": "no",
"left_behind": "no"
}, {
"character": "Barbara Wright",
"died": "no",
"left": "no",
"left_behind": "no"
}, {
"character": "Ian Chesterton",
"died": "no",
"left": "no",
"left_behind": "no"
}
]
},
"enemies": {
"enemy": [
{
"enemy": "Yartek",
"actor": [
{
"name": "Stephen Dartnell"
}
]
}, {
"enemy": "The Voords",
"actor": [
{
"name": "Martin Cort"
}, {
"name": "Peter Stenson"
}, {
"name": "Gordon Wales"
}
]
}
]
},
"episodes": {
"episode": [
{
"archive": "16mm t/r",
"name": "The Sea of Death",
"airdate": "11 April 1964",
"overview": "The alien world of Marinus. Perfect peace has reigned here for decades due to the mind-controlling influence of a machine known as the Conscience. But now a race known as the Voord have developed an immunity and Arbitan, keeper of the machine, has been forced to scatter the vital control keys around the planet. Now he needs the help of the time travellers to get them back - it will be an extraordinary journey, with perils every step of the way...",
"director": "John Gorrie",
"writers": [
{
"name": "Terry Nation"
}
]
},{
"archive": "16mm t/r",
"name": "The Velvet Web",
"airdate": "18 April 1964",
"overview": "The alien world of Marinus. Perfect peace has reigned here for decades due to the mind-controlling influence of a machine known as the Conscience. But now a race known as the Voord have developed an immunity and Arbitan, keeper of the machine, has been forced to scatter the vital control keys around the planet. Now he needs the help of the time travellers to get them back - it will be an extraordinary journey, with perils every step of the way...",
"director": "John Gorrie",
"writers": [
{
"name": "Terry Nation"
}
]
},{
"archive": "16mm t/r",
"name": "The Screaming Jungle",
"airdate": "25 April 1964",
"overview": "The alien world of Marinus. Perfect peace has reigned here for decades due to the mind-controlling influence of a machine known as the Conscience. But now a race known as the Voord have developed an immunity and Arbitan, keeper of the machine, has been forced to scatter the vital control keys around the planet. Now he needs the help of the time travellers to get them back - it will be an extraordinary journey, with perils every step of the way...",
"director": "John Gorrie",
"writers": [
{
"name": "Terry Nation"
}
]
},{
"archive": "16mm t/r",
"name": "The Snows of Terror",
"airdate": "2 May 1964",
"overview": "The alien world of Marinus. Perfect peace has reigned here for decades due to the mind-controlling influence of a machine known as the Conscience. But now a race known as the Voord have developed an immunity and Arbitan, keeper of the machine, has been forced to scatter the vital control keys around the planet. Now he needs the help of the time travellers to get them back - it will be an extraordinary journey, with perils every step of the way...",
"director": "John Gorrie",
"writers": [
{
"name": "Terry Nation"
}
]
},{
"archive": "16mm t/r",
"name": "Sentence of Death",
"airdate": "9 May 1964",
"overview": "The alien world of Marinus. Perfect peace has reigned here for decades due to the mind-controlling influence of a machine known as the Conscience. But now a race known as the Voord have developed an immunity and Arbitan, keeper of the machine, has been forced to scatter the vital control keys around the planet. Now he needs the help of the time travellers to get them back - it will be an extraordinary journey, with perils every step of the way...",
"director": "John Gorrie",
"writers": [
{
"name": "Terry Nation"
}
]
},{
"archive": "16mm t/r",
"name": "The Keys of Marinus",
"airdate": "16 May 1964",
"overview": "The alien world of Marinus. Perfect peace has reigned here for decades due to the mind-controlling influence of a machine known as the Conscience. But now a race known as the Voord have developed an immunity and Arbitan, keeper of the machine, has been forced to scatter the vital control keys around the planet. Now he needs the help of the time travellers to get them back - it will be an extraordinary journey, with perils every step of the way...",
"director": "John Gorrie",
"writers": [
{
"name": "Terry Nation"
}
]
}
]
}
}, {
"name": "The Aztecs",
"airdate": "23 May - 13 June 1964",
"production_code": "F",
"overview": "The TARDIS crew arrive in Mexico in the 15th Century. With the TARDIS trapped in a tomb, Barbara is mistaken for a female reincarnation of the ancient high priest Yetaxa, and assumes her guise and identity. From her new position of power, Barbara sees her chance to bring an end to human sacrifice. ",
"companions": {
"companion": [
{
"character": "Susan Foreman",
"died": "no",
"left": "no",
"left_behind": "no"
}, {
"character": "Barbara Wright",
"died": "no",
"left": "no",
"left_behind": "no"
}, {
"character": "Ian Chesterton",
"died": "no",
"left": "no",
"left_behind": "no"
}
]
},
"enemies": {
"enemy": [
{
"enemy": "Tlotoxl",
"actor": [
{
"name": "John Ringham"
}
]
}
]
},
"episodes": {
"episode": [
{
"archive": "16mm t/r",
"name": "The Temple of Evil",
"airdate": "23 May 1964",
"overview": "Mexico, the early 15th century.The TARDIS arrives in the tomb of former Aztec High Priest Yetaxa. The travellers become cut off from the ship when they go and explore the temple outside. Barbara is acclaimed by the High Priest of Knowledge, Autloc, as Yetaxa's divine reincarnation. However, she incurs the wrath of the High Priest of Sacrifice, Tlotoxl, when she attempts to use her new-found authority to stop the Aztec practice of human sacrifice. Can Barbara change the course of history and save the Aztecs? Can the time travellers find a way back into the tomb? Or will they fall victim to Tlotoxl's altar of sacrifice?",
"director": "John Crockett",
"writers": [
{
"name": "John Lucarotti"
}
]
},{
"archive": "16mm t/r",
"name": "The Warriors of Death",
"airdate": "30 May 1964",
"overview": "Mexico, the early 15th century.The TARDIS arrives in the tomb of former Aztec High Priest Yetaxa. The travellers become cut off from the ship when they go and explore the temple outside. Barbara is acclaimed by the High Priest of Knowledge, Autloc, as Yetaxa's divine reincarnation. However, she incurs the wrath of the High Priest of Sacrifice, Tlotoxl, when she attempts to use her new-found authority to stop the Aztec practice of human sacrifice. Can Barbara change the course of history and save the Aztecs? Can the time travellers find a way back into the tomb? Or will they fall victim to Tlotoxl's altar of sacrifice?",
"director": "John Crockett",
"writers": [
{
"name": "John Lucarotti"
}
]
},{
"archive": "16mm t/r",
"name": "The Bride of Sacrifice",
"airdate": "6 June 1964",
"overview": "Mexico, the early 15th century.The TARDIS arrives in the tomb of former Aztec High Priest Yetaxa. The travellers become cut off from the ship when they go and explore the temple outside. Barbara is acclaimed by the High Priest of Knowledge, Autloc, as Yetaxa's divine reincarnation. However, she incurs the wrath of the High Priest of Sacrifice, Tlotoxl, when she attempts to use her new-found authority to stop the Aztec practice of human sacrifice. Can Barbara change the course of history and save the Aztecs? Can the time travellers find a way back into the tomb? Or will they fall victim to Tlotoxl's altar of sacrifice?",
"director": "John Crockett",
"writers": [
{
"name": "John Lucarotti"
}
]
},{
"archive": "16mm t/r",
"name": "The Day of Darkness",
"airdate": "13 June 1964",
"overview": "Mexico, the early 15th century.The TARDIS arrives in the tomb of former Aztec High Priest Yetaxa. The travellers become cut off from the ship when they go and explore the temple outside. Barbara is acclaimed by the High Priest of Knowledge, Autloc, as Yetaxa's divine reincarnation. However, she incurs the wrath of the High Priest of Sacrifice, Tlotoxl, when she attempts to use her new-found authority to stop the Aztec practice of human sacrifice. Can Barbara change the course of history and save the Aztecs? Can the time travellers find a way back into the tomb? Or will they fall victim to Tlotoxl's altar of sacrifice?",
"director": "John Crockett",
"writers": [
{
"name": "John Lucarotti"
}
]
}
]
}
}, {
"name": "The Sensorites",
"airdate": "20 June - 1 August 1964",
"production_code": "G",
"overview": "The TARDIS travellers land on a spaceship and find the crew apparently dead. However, other crew members regain consciousness and Ian Chesterton fully revives them. These two tell the travellers that they are on an exploration mission from Earth and are orbiting Sense-Sphere. However, its inhabitants, the Sensorites, refuse to let them leave the orbit.",
"companions": {
"companion": [
{
"character": "Susan Foreman",
"died": "no",
"left": "no",
"left_behind": "no"
}, {
"character": "Barbara Wright",
"died": "no",
"left": "no",
"left_behind": "no"
}, {
"character": "Ian Chesterton",
"died": "no",
"left": "no",
"left_behind": "no"
}
]
},
"enemies": {
"enemy": [
{
"enemy": "Commander",
"actor": [
{
"name": "John Bailey"
}
]
}
]
},
"episodes": {
"episode": [
{
"archive": "16mm t/r",
"name": "Strangers in Space",
"airdate": "20 June 1964",
"overview": "The 28th century. The TARDIS materialises on a spaceship orbiting a planet known as the Sense-Sphere, whose natives, the Sensorites, have trapped the ship's human crew in a state of paralysis.",
"director": "Mervyn Pinfield & Frank Cox",
"writers": [
{
"name": "Peter R. Newman"
}
]
},{
"archive": "16mm t/r",
"name": "The Unwilling Warriors",
"airdate": "27 June 1964",
"overview": "The Doctor and his companions are on board an Earth ship trapped in orbit around the Sense-Sphere when it is boarded by the Sensorites, who steal the lock mechanism from the TARDIS.",
"director": "Mervyn Pinfield & Frank Cox",
"writers": [
{
"name": "Peter R. Newman"
}
]
},{
"archive": "16mm t/r",
"name": "Hidden Danger",
"airdate": "11 July 1964",
"overview": "The Doctor and his companions are escorted to the Sense-Sphere where they attempt to negotiate with the Sensorites for the release of the TARDIS.",
"director": "Mervyn Pinfield & Frank Cox",
"writers": [
{
"name": "Peter R. Newman"
}
]
},{
"archive": "16mm t/r",
"name": "A Race Against Death",
"airdate": "18 July 1964",
"overview": "Trapped on the Sense-Sphere, Ian is dying from the illness that has been killing the Sensorites and the Doctor tries to find a cure.",
"director": "Mervyn Pinfield & Frank Cox",
"writers": [
{
"name": "Peter R. Newman"
}
]
},{
"archive": "16mm t/r",
"name": "Kidnap",
"airdate": "25 July 1964",
"overview": "Trapped on the Sense-Sphere, the Doctor's investigations into the cause of the sickness affecting the Sensorites are hampered by the subversive activities of the City Administrator.",
"director": "Mervyn Pinfield & Frank Cox",
"writers": [
{
"name": "Peter R. Newman"
}
]
},{
"archive": "16mm t/r",
"name": "A Desperate Venture",
"airdate": "1 August 1964",
"overview": "Trapped on the Sense-Sphere, the Doctor and his companions find three deranged human survivors who have been fighting a guerilla war against the Sensorites.",
"director": "Mervyn Pinfield & Frank Cox",
"writers": [
{
"name": "Peter R. Newman"
}
]
}
]
}
}, {
"name": "The Reign of Terror",
"airdate": "8 August - 12 September 1964",
"production_code": "G",
"overview": "The Doctor, Ian, Barbara and Susan arrive in what they believe to be England. However, it is soon clear that they have travelled back into Earth history yet again, this time to 18th Century France, during The French Revolution. ",
"companions": {
"companion": [
{
"character": "Susan Foreman",
"died": "no",
"left": "no",
"left_behind": "no"
}, {
"character": "Barbara Wright",
"died": "no",
"left": "no",
"left_behind": "no"
}, {
"character": "Ian Chesterton",
"died": "no",
"left": "no",
"left_behind": "no"
}
]
},
"enemies": {
"enemy": [
{
"enemy": "French Revolution",
"actor":[
{
"name": " "
}
]
}
]
},
"episodes": {
"episode": [
{
"archive": "16mm t/r",
"name": "A Land of Fear",
"airdate": "8 August 1964",
"overview": "The Doctor's friends are captured by soldiers in post-Revolutionary France, during the reign of terror in which anyone suspected of Royalist sympathies is immediately executed. Ian is thrown into jail with a dying English prisoner, who gives him a vital message for English master spy James Stirling. Robespierre's right-hand man, Citizen Lemaitre, secretly helps Ian to escape. The Doctor arrives, disguised as a prominent Citizen to arrange for his friends' release, but Lemaitre sees through his guise and threatens to have Susan executed unless the Doctor leads him to the escape route run by Jules Renan. There, Lemaitre reveals himself to be Stirling, and enlists Ian and Barbara's help to complete his mission. So doing, they see Paul Barrass inviting Napoleon Bonaparte to rule the country as part of a triumverate after Robespierre is overthrown. Stirling tries to stop this for the sake of his own country, but he is too late to prevent the mob from turning on Robespierre. Nevertheless he is true to his word and releases Susan, allowing the travellers to escape from Paris.",
"director": "Henric Hirsch",
"writers": [
{
"name": "Dennis Spooner"
}
]
},{
"archive": "16mm t/r",
"name": "Guests of Madame Guillotine",
"airdate": "15 August 1964",
"overview": "The Doctor's friends are captured by soldiers in post-Revolutionary France, during the reign of terror in which anyone suspected of Royalist sympathies is immediately executed. Ian is thrown into jail with a dying English prisoner, who gives him a vital message for English master spy James Stirling. Robespierre's right-hand man, Citizen Lemaitre, secretly helps Ian to escape. The Doctor arrives, disguised as a prominent Citizen to arrange for his friends' release, but Lemaitre sees through his guise and threatens to have Susan executed unless the Doctor leads him to the escape route run by Jules Renan. There, Lemaitre reveals himself to be Stirling, and enlists Ian and Barbara's help to complete his mission. So doing, they see Paul Barrass inviting Napoleon Bonaparte to rule the country as part of a triumverate after Robespierre is overthrown. Stirling tries to stop this for the sake of his own country, but he is too late to prevent the mob from turning on Robespierre. Nevertheless he is true to his word and releases Susan, allowing the travellers to escape from Paris.",
"director": "Henric Hirsch",
"writers": [
{
"name": "Dennis Spooner"
}
]
},{
"archive": "16mm t/r",
"name": "A Change of Identity",
"airdate": "22 August 1964",
"overview": "The Doctor's friends are captured by soldiers in post-Revolutionary France, during the reign of terror in which anyone suspected of Royalist sympathies is immediately executed. Ian is thrown into jail with a dying English prisoner, who gives him a vital message for English master spy James Stirling. Robespierre's right-hand man, Citizen Lemaitre, secretly helps Ian to escape. The Doctor arrives, disguised as a prominent Citizen to arrange for his friends' release, but Lemaitre sees through his guise and threatens to have Susan executed unless the Doctor leads him to the escape route run by Jules Renan. There, Lemaitre reveals himself to be Stirling, and enlists Ian and Barbara's help to complete his mission. So doing, they see Paul Barrass inviting Napoleon Bonaparte to rule the country as part of a triumverate after Robespierre is overthrown. Stirling tries to stop this for the sake of his own country, but he is too late to prevent the mob from turning on Robespierre. Nevertheless he is true to his word and releases Susan, allowing the travellers to escape from Paris.",
"director": "Henric Hirsch",
"writers": [
{
"name": "Dennis Spooner"
}
]
},{
"archive": "Only stills and/or fragments exist",
"name": "The Tyrant of France",
"airdate": "29 August 1964",
"overview": "The Doctor's friends are captured by soldiers in post-Revolutionary France, during the reign of terror in which anyone suspected of Royalist sympathies is immediately executed. Ian is thrown into jail with a dying English prisoner, who gives him a vital message for English master spy James Stirling. Robespierre's right-hand man, Citizen Lemaitre, secretly helps Ian to escape. The Doctor arrives, disguised as a prominent Citizen to arrange for his friends' release, but Lemaitre sees through his guise and threatens to have Susan executed unless the Doctor leads him to the escape route run by Jules Renan. There, Lemaitre reveals himself to be Stirling, and enlists Ian and Barbara's help to complete his mission. So doing, they see Paul Barrass inviting Napoleon Bonaparte to rule the country as part of a triumverate after Robespierre is overthrown. Stirling tries to stop this for the sake of his own country, but he is too late to prevent the mob from turning on Robespierre. Nevertheless he is true to his word and releases Susan, allowing the travellers to escape from Paris.",
"director": "Henric Hirsch",
"writers": [
{
"name": "Dennis Spooner"
}
]
},{
"archive": "Only stills and/or fragments exist",
"name": "A Bargain of Necessity",
"airdate": "5 September 1964",
"overview": "The Doctor's friends are captured by soldiers in post-Revolutionary France, during the reign of terror in which anyone suspected of Royalist sympathies is immediately executed. Ian is thrown into jail with a dying English prisoner, who gives him a vital message for English master spy James Stirling. Robespierre's right-hand man, Citizen Lemaitre, secretly helps Ian to escape. The Doctor arrives, disguised as a prominent Citizen to arrange for his friends' release, but Lemaitre sees through his guise and threatens to have Susan executed unless the Doctor leads him to the escape route run by Jules Renan. There, Lemaitre reveals himself to be Stirling, and enlists Ian and Barbara's help to complete his mission. So doing, they see Paul Barrass inviting Napoleon Bonaparte to rule the country as part of a triumverate after Robespierre is overthrown. Stirling tries to stop this for the sake of his own country, but he is too late to prevent the mob from turning on Robespierre. Nevertheless he is true to his word and releases Susan, allowing the travellers to escape from Paris.",
"director": "Henric Hirsch",
"writers": [
{
"name": "Dennis Spooner"
}
]
},{
"archive": "16mm t/r",
"name": "Prisoners of Conciergerie",
"airdate": "12 September 1964",
"overview": "The Doctor's friends are captured by soldiers in post-Revolutionary France, during the reign of terror in which anyone suspected of Royalist sympathies is immediately executed. Ian is thrown into jail with a dying English prisoner, who gives him a vital message for English master spy James Stirling. Robespierre's right-hand man, Citizen Lemaitre, secretly helps Ian to escape. The Doctor arrives, disguised as a prominent Citizen to arrange for his friends' release, but Lemaitre sees through his guise and threatens to have Susan executed unless the Doctor leads him to the escape route run by Jules Renan. There, Lemaitre reveals himself to be Stirling, and enlists Ian and Barbara's help to complete his mission. So doing, they see Paul Barrass inviting Napoleon Bonaparte to rule the country as part of a triumverate after Robespierre is overthrown. Stirling tries to stop this for the sake of his own country, but he is too late to prevent the mob from turning on Robespierre. Nevertheless he is true to his word and releases Susan, allowing the travellers to escape from Paris.",
"director": "Henric Hirsch",
"writers": [
{
"name": "Dennis Spooner"
}
]
}
]
}
}
]
}
}, {
"season": "2",
"from": "1964",
"to": "1965",
"classic": "yes",
"new": "no",
"serials": {
"serial": [
{
"name": "Planet of Giants",
"airdate": "31 October - 14 November 1964",
"production_code": "J",
"overview": "Following a malfunction on the TARDIS console, the Doctor leads his companions Ian, Barbara and Susan to the world beyond. After some deduction the travellers realise they have arrived on Earth but have shrunk in size to about an inch.",
"companions": {
"companion": [
{
"character": "Susan Foreman",
"died": "no",
"left": "no",
"left_behind": "no"
}, {
"character": "Barbara Wright",
"died": "no",
"left": "no",
"left_behind": "no"
}, {
"character": "Ian Chesterton",
"died": "no",
"left": "no",
"left_behind": "no"
}
]
},
"enemies": {
"enemy": [
{
"enemy": "Farrow",
"actor": [
{
"name": "Frank Crawshaw"
}
]
}
]
},
"episodes": {
"episode": [
{
"archive": "16mm t/r",
"name": "Planet of Giants",
"airdate": "31 October 1964",
"overview": "Earth, 1964. An accident on landing vastly reduces the TARDIS and the travellers in size. They come across a scheme run by Forester, a ruthless businessman and his misguided scientist colleague Smithers to launch a new insecticide which is capable of destroying the local ecology. Forester is prepared to commit murder to secure the success of this project - can the inch-high travellers somehow foil him?",
"director": "Mervyn Pinfield",
"writers": [
{
"name": "Louis Marks"
}
]
},{
"archive": "16mm t/r",
"name": "Dangerous Journey",
"airdate": "7 November 1964",
"overview": "Earth, 1964. An accident on landing vastly reduces the TARDIS and the travellers in size. They come across a scheme run by Forester, a ruthless businessman and his misguided scientist colleague Smithers to launch a new insecticide which is capable of destroying the local ecology. Forester is prepared to commit murder to secure the success of this project - can the inch-high travellers somehow foil him?",
"director": "Mervyn Pinfield",
"writers": [
{
"name": "Louis Marks"
}
]
},{
"archive": "Only stills and/or fragments exist",
"name": "Crisis, original recorded version",
"airdate": "Unaired",
"overview": "Earth, 1964. An accident on landing vastly reduces the TARDIS and the travellers in size. They come across a scheme run by Forester, a ruthless businessman and his misguided scientist colleague Smithers to launch a new insecticide which is capable of destroying the local ecology. Forester is prepared to commit murder to secure the success of this project - can the inch-high travellers somehow foil him?",
"director": "Mervyn Pinfield",
"writers": [
{
"name": "Louis Marks"
}
]