-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathdata.js
More file actions
4016 lines (4016 loc) · 155 KB
/
Copy pathdata.js
File metadata and controls
4016 lines (4016 loc) · 155 KB
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
RAM.episodes = [
{
"name": "Pilot",
"season": 1,
"episode": 1,
"code": "s1e1"
},
{
"name": "Lawnmower Dog",
"season": 1,
"episode": 2,
"code": "s1e2"
},
{
"name": "Anatomy Park",
"season": 1,
"episode": 3,
"code": "s1e3"
},
{
"name": "M. Night Shaym-Aliens!",
"season": 1,
"episode": 4,
"code": "s1e4"
},
{
"name": "Meeseeks and Destroy",
"season": 1,
"episode": 5,
"code": "s1e5"
},
{
"name": "Rick Potion #9",
"season": 1,
"episode": 6,
"code": "s1e6"
},
{
"name": "Raising Gazorpazorp",
"season": 1,
"episode": 7,
"code": "s1e7"
},
{
"name": "Rixty Minutes",
"season": 1,
"episode": 8,
"code": "s1e8"
},
{
"name": "Something Ricked This Way Comes",
"season": 1,
"episode": 9,
"code": "s1e9"
},
{
"name": "Close Rick-counters of the Rick Kind",
"season": 1,
"episode": 10,
"code": "s1e10"
},
{
"name": "Ricksy Business",
"season": 1,
"episode": 11,
"code": "s1e11"
},
{
"name": "A Rickle in Time",
"season": 2,
"episode": 1,
"code": "s2e1"
},
{
"name": "Mortynight Run",
"season": 2,
"episode": 2,
"code": "s2e2"
},
{
"name": "Auto Erotic Assimilation",
"season": 2,
"episode": 3,
"code": "s2e3"
},
{
"name": "Total Rickall",
"season": 2,
"episode": 4,
"code": "s2e4"
},
{
"name": "Get Schwifty",
"season": 2,
"episode": 5,
"code": "s2e5"
},
{
"name": "The Ricks Must Be Crazy",
"season": 2,
"episode": 6,
"code": "s2e6"
},
{
"name": "Big Trouble in Little Sanchez",
"season": 2,
"episode": 7,
"code": "s2e7"
},
{
"name": "Interdimensional Cable 2: Tempting Fate",
"season": 2,
"episode": 8,
"code": "s2e8"
},
{
"name": "Look Who's Purging Now",
"season": 2,
"episode": 9,
"code": "s2e9"
},
{
"name": "The Wedding Squanchers",
"season": 2,
"episode": 10,
"code": "s2e10"
},
{
"name": "The Rickshank Rickdemption",
"season": 3,
"episode": 1,
"code": "s3e1"
},
{
"name": "Rickmancing the Stone",
"season": 3,
"episode": 2,
"code": "s3e2"
},
{
"name": "Pickle Rick",
"season": 3,
"episode": 3,
"code": "s3e3"
},
{
"name": "Vindicators 3: The Return of Worldender",
"season": 3,
"episode": 4,
"code": "s3e4"
},
{
"name": "The Whirly Dirly Conspiracy",
"season": 3,
"episode": 5,
"code": "s3e5"
},
{
"name": "Rest and Ricklaxation",
"season": 3,
"episode": 6,
"code": "s3e6"
},
{
"name": "The Ricklantis Mixup",
"season": 3,
"episode": 7,
"code": "s3e7"
},
{
"name": "Morty's Mind Blowers",
"season": 3,
"episode": 8,
"code": "s3e8"
},
{
"name": "The ABC's of Beth",
"season": 3,
"episode": 9,
"code": "s3e9"
},
{
"name": "The Rickchurian Mortydate",
"season": 3,
"episode": 10,
"code": "s3e10"
}
];
RAM.characters = [
{
"name": "Morty Smith",
"image": "Morty_Smith.png",
"description": "Mortimer \"Morty\" Smith Sr. is one of the two eponymous main protagonists in Rick and Morty. He is the grandson of Rick and is often forced to tag along on his various misadventures. Morty attends Harry Herpson High School along with his sister, Summer.",
"appearance": [
"s1e1",
"s1e2",
"s1e3",
"s1e4",
"s1e5",
"s1e6",
"s1e7",
"s1e8",
"s1e9",
"s1e10",
"s1e11",
"s2e1",
"s2e2",
"s2e3",
"s2e4",
"s2e5",
"s2e6",
"s2e7",
"s2e8",
"s2e9",
"s2e10",
"s3e1",
"s3e2",
"s3e3",
"s3e4",
"s3e5",
"s3e6",
"s3e7",
"s3e8",
"s3e9",
"s3e10"
],
"died": "",
"death_note": ""
},
{
"name": "Rick Sanchez",
"image": "Rick_Sanchez.png",
"description": "Rick Sanchez is the co-eponymous main character and leading protagonist of the show. He is a genius scientist whose alcoholism and reckless, nihilistic behavior are a source of concern for his Beth Smith's family, as well as the safety of their son, Morty. He is voiced by Justin Roiland.",
"appearance": [
"s1e1",
"s1e2",
"s1e3",
"s1e4",
"s1e5",
"s1e6",
"s1e7",
"s1e8",
"s1e9",
"s1e10",
"s1e11",
"s2e1",
"s2e2",
"s2e3",
"s2e4",
"s2e5",
"s2e6",
"s2e7",
"s2e8",
"s2e9",
"s2e10",
"s3e1",
"s3e2",
"s3e3",
"s3e4",
"s3e5",
"s3e6",
"s3e7",
"s3e8",
"s3e9",
"s3e10"
],
"died": "",
"death_note": ""
},
{
"name": "Jerry Smith (C-137)",
"image": "Jerry_Smith.png",
"description": "Jerry Smith is a supporting character in Rick and Morty. He is Morty and Summer Smith (C-137) insecure father, who strongly disapproves of Rick's influence over his son. Along with this is his jeopardized marriage to his wife, Beth Smith (C-137), whom he finds himself struggling to keep a hold of due to her close relationship with her father. He was an adman until he was fired, which became irrelevant once the world turned into Dimension C-137, where he, along with Summer Smith (C-137), and Beth Smith (C-137) currently reside.",
"appearance": [
"s1e1",
"s1e2",
"s1e3",
"s1e4",
"s1e5",
"s1e6",
"s3e1"
],
"died": "",
"death_note": ""
},
{
"name": "Beth Smith (C-137)",
"image": "Beth_Smith.png",
"description": "Beth Smith C-137 (n\u00e9e Sanchez) is the alternate version of Beth Smith, the daughter of Rick Sanchez, wife of Jerry Smith (C-137), and the mother of Morty Smith and Summer Smith (C-137). However, due to the events of the episode Rick Potion 9, Rick and Morty had to leave Dimension C-137 and go to a Replacement dimension, which was identical to theirs. Beth currently resides in the post-apocalyptic remains of her original dimension, alongside Jerry and Summer.",
"appearance": [
"s1e1",
"s1e2",
"s1e3",
"s1e5",
"s1e6",
"s3e1"
],
"died": "",
"death_note": ""
},
{
"name": "Summer Smith (C-137)",
"image": "Summer_Smith.png",
"description": "Summer Smith is a supporting character and the older sister of Morty Smith. Summer attends Harry Herpson High School along with Morty. She is a teenage girl who finds her family life to be dysfunctional. After the world was accidentally \"cronenberged\", she became a feral survivor alongside her parents and held a disdain for Rick Sanchez.",
"appearance": [
"s1e1",
"s1e2",
"s1e3",
"s1e5",
"s1e6",
"s3e1"
],
"died": "",
"death_note": ""
},
{
"name": "Mr. Goldenfold",
"image": "",
"description": "Mr. Goldenfold is Morty Smith eccentric math teacher. He is voiced by Brandon Johnson.",
"appearance": [
"s1e1",
"s1e2",
"s1e6",
"s1e9",
"s2e5",
"s2e6",
"s2e7",
"s2e10",
"s3e1",
"s3e3",
"s3e6",
"s3e9"
],
"died": "s1e6",
"death_note": "Died in Dimension C-137"
},
{
"name": "Frank Palicky",
"image": "",
"description": "Frank Palicky was a student at Harry Herpson High School. He was a frequent bully to Morty, and his dialogue with Morty suggests that Frank is insecure about his family's socioeconomic status.",
"appearance": [
"s1e1"
],
"died": "s1e1",
"death_note": ""
},
{
"name": "Jessica",
"image": "Jessica.png",
"description": "Jessica is a student at Harry Herpson High School. She is a popular girl in Morty's math class who he desires to be with romantically and often has surreal daydreams about, almost exclusively sexual in nature. Much to Morty's dismay she is already in a relationship with Brad, whom she frequently experiences difficulties with. She is voiced by Kari Wahlgren.",
"appearance": [
"s1e1",
"s1e6",
"s1e11",
"s2e2",
"s2e6",
"s2e7",
"s3e5",
"s3e6",
"s3e7",
"s3e8",
"s3e9"
],
"died": "s1e6",
"death_note": "Died in Dimension C-137"
},
{
"name": "Davin",
"image": "",
"description": "Davin was Beth's coworker at St. Equis Hospital. Davin is in love with Beth and he constantly hits on her and tries to seduce her and win her over. Because of this, Jerry is extremely jealous of him. Beth denies having any feelings for him, which she most likely doesn't, but Jerry does not trust her around him and absolutely hates him with every fiber in his being.",
"appearance": [
"s1e1",
"s1e6"
],
"died": "s1e6",
"death_note": "Died in Dimension C-137"
},
{
"name": "Principal Vagina",
"image": "",
"description": "Principal Gene Vagina is the principal of Harry Herpson High School. He is voiced by wikipedia:Phil Hendrie",
"appearance": [
"s1e1",
"s1e5",
"s1e6",
"s2e5",
"s2e7",
"s3e3",
"s3e6",
"s3e8",
"s3e9"
],
"died": "s1e6",
"death_note": "Died in Dimension C-137"
},
{
"name": "Hookah Alien",
"image": "",
"description": "",
"appearance": [
"s1e1"
],
"died": "",
"death_note": ""
},
{
"name": "Glenn",
"image": "",
"description": "Glenn is a one-off character who appears briefly in the Pilot episode of Rick and Morty. He and several of his comrades are shot and killed by Morty during a gunfight at interdimensional customs under the deception of Rick S\u00e1nchez that Glenn and his species were robots.",
"appearance": [
"s1e1"
],
"died": "s1e1",
"death_note": ""
},
{
"name": "Jessica's Friend",
"image": "",
"description": "Jessica's Friend is an unnamed girl who attends Harry Herpson High School. She is very close friends with Jessica, and is usually seen by her side in most of her appearances, either chatting, or sitting next to her to keep her company. She is voiced by Reagan Gomez-Preston.",
"appearance": [
"s1e1",
"s1e6",
"s1e11",
"s2e6",
"s2e7",
"s3e4",
"s3e6"
],
"died": "s1e6",
"death_note": "Died in Dimension C-137"
},
{
"name": "Bill (The Dog)",
"image": "",
"description": "Bill is a character that appears in the episode Lawnmower Dog as a one time character. ",
"appearance": [
"s1e2"
],
"died": "",
"death_note": ""
},
{
"name": "Centaur",
"image": "",
"description": "Centaur is a mythological creature that is half man half horse. It appeared in the episode Lawnmower Dog. He was inside of Mrs. Pancakes dream, which was inside of Mr. Goldenfold dream and Rick and Morty later intercepted his dream. Here, he was one of the guards at the S&M dungeon.",
"appearance": [
"s1e2"
],
"died": "s1e2",
"death_note": ""
},
{
"name": "Creepy Little Girl",
"image": "",
"description": "Creepy Little Girl is a little girl who was featured in the Centaur dream, which was in Mrs. Pancakes dream, which was in Mr. Goldenfold dream. She is a singing little girl who jumps rope, while she sings about Scary Terry. Rick and Morty intercepted her dream, which turned out to be exactly like where they already were. After they escaped their dream, Scary Terry decapitated her, causing her to wake up.",
"appearance": [
"s1e2"
],
"died": "s1e2",
"death_note": ""
},
{
"name": "Melissa",
"image": "",
"description": "Melissa (Possibly \"Scary Melissa\") is a character that appeared in the episode \"Lawnmower Dog\". She is Scary Terry's wife and together they have a son, Scary Brandon.",
"appearance": [
"s1e2"
],
"died": "",
"death_note": ""
},
{
"name": "Mrs. Pancakes",
"image": "",
"description": "Mrs. Pancakes is a character from an in-universe TV show called The Days and Nights of Mrs. Pancakes. Mr. Goldenfold has a celebrity crush on her. He oftentimes dreams of being with her. Rick stated that he also watches the show, but was a full season behind at the time.",
"appearance": [
"s1e2",
"s3e6"
],
"died": "s1e2",
"death_note": ""
},
{
"name": "Scary Brandon",
"image": "",
"description": "",
"appearance": [
"s1e2"
],
"died": "",
"death_note": ""
},
{
"name": "Scary Glenn",
"image": "",
"description": "Scary Glenn Johnson appears in the after-credit scene in Lawnmower Dog, being the new teacher for Scary class in Scary Terry dream.",
"appearance": [
"s1e2"
],
"died": "",
"death_note": ""
},
{
"name": "Scary Terry",
"image": "",
"description": "Scary Terry is a character that appeared as the secondary antagonist in the episode \"Lawnmower Dog\" and the Rick and Morty (comic series) Morty and Rick in: Mortballs. After a failed attempt at killing them, Scary Terry retreats and heads home. While he is asleep, Rick and Morty incept his dreams and befriend him.",
"appearance": [
"s1e2"
],
"died": "",
"death_note": ""
},
{
"name": "Snuffles",
"image": "Snuffles.png",
"description": "Snuffles, (who changed his name to Snowball and back again) was Morty's pet dog featured in the episode Lawnmower Dog. Snuffles is a small, fluffy white-haired dog that experiences some trouble with being potty-trained until Rick develops an IQ-enhancing helmet for him at the request of Jerry.",
"appearance": [
"s1e2",
"s1e10",
"s2e4",
"s3e8",
"s3e9"
],
"died": "",
"death_note": ""
},
{
"name": "Alexander",
"image": "",
"description": "Alexander is a character who appeared in the episode Anatomy Park (episode). He is a member of the team. Alexander was a minor character who was killed off very soon after he was introduced. His only known trait is that he has to wear a dog costume that he hates all the time and Dr. Xenon Bloom won't allow him to take it off.",
"appearance": [
"s1e3"
],
"died": "s1e3",
"death_note": ""
},
{
"name": "Annie",
"image": "",
"description": "Annie is a member and the only survivor of the team that worked on the theme park, Anatomy Park (Location), that was being constructed inside the body of a homeless man Ruben. She appears in the episode of the same name (Anatomy Park (Episode)).",
"appearance": [
"s1e3"
],
"died": "",
"death_note": ""
},
{
"name": "Bill",
"image": "",
"description": "Bill works as a news presenter on TV in their station's studio and knows the other news reporters by name. On Christmas he was in on reporting on the Ruben that was floating over the USA. He set the program over to Tom Randolph in New York and then to Eric McMan in Los Angeles to cover the giant from top to bottom. ",
"appearance": [
"s1e3"
],
"died": "",
"death_note": ""
},
{
"name": "Bubonic Plague",
"image": "",
"description": "",
"appearance": [
"s1e3"
],
"died": "",
"death_note": ""
},
{
"name": "Dr. Xenon Bloom",
"image": "",
"description": "Dr. Xenon Bloom (voiced by wikipedia:John Oliver (comedian)) is a character of the day and served as one of the protagonists, appearing in the 3rd episode, Anatomy Park (Episode). Bloom is an amoeba who is the co-founder of Anatomy Park.",
"appearance": [
"s1e3"
],
"died": "s1e3",
"death_note": ""
},
{
"name": "Eric McMan",
"image": "",
"description": "Eric McMan is a news reporter for a news station who covered the Ruben who floated above the USA on Christmas. He was situated in Los Angeles and reported on the giant santa's giant feet, hinting to that the giant santa must also have a giant penis. ",
"appearance": [
"s1e3"
],
"died": "",
"death_note": ""
},
{
"name": "Ethan",
"image": "",
"description": "Ethan is Summer Smith ex-boyfriend, and a recurring character in Rick and Morty (TV series). He first appeared in the episode, \"Anatomy Park (episode)\".",
"appearance": [
"s1e3",
"s2e5",
"s3e5"
],
"died": "",
"death_note": ""
},
{
"name": "Gonorrhea",
"image": "",
"description": "",
"appearance": [
"s1e3"
],
"died": "s1e3",
"death_note": ""
},
{
"name": "Hepatitis A",
"image": "",
"description": "",
"appearance": [
"s1e3"
],
"died": "s1e3",
"death_note": ""
},
{
"name": "Hepatitis C",
"image": "",
"description": "",
"appearance": [
"s1e3"
],
"died": "s1e3",
"death_note": ""
},
{
"name": "Jacob",
"image": "",
"description": "Jacob Philip is a family friend of Jerry Smith's parents, and is later revealed to be Joyce's lover.",
"appearance": [
"s1e3"
],
"died": "",
"death_note": ""
},
{
"name": "Joyce Smith",
"image": "",
"description": "Joyce Smith is Jerry mother, Leonard Smith wife, and Morty paternal grandmother. With his consent, she takes Jacob as a male consort due to her husband's impotence.",
"appearance": [
"s1e3"
],
"died": "",
"death_note": ""
},
{
"name": "Leonard Smith",
"image": "",
"description": "Leonard Smith is Jerry's father, Joyce's husband, Summer and Morty's paternal grandfather. He appears in the episode \"Anatomy Park (episode)\". Like his wife, he is a swinger and participates in a three-way relationship with his wife and Jacob where he mainly participates as a wikipedia:Voyeurism.",
"appearance": [
"s1e3"
],
"died": "",
"death_note": ""
},
{
"name": "Poncho",
"image": "",
"description": "Poncho was a character in Rick and Morty. He appears as a bodyguard and the main antagonist in the episode \"Anatomy Park (Episode).\" Poncho was a hired gun for Dr. Xenon Bloom to provide security for Anatomy Park (Location).",
"appearance": [
"s1e3"
],
"died": "s1e3",
"death_note": ""
},
{
"name": "Roger",
"image": "",
"description": "Roger was a member of the team working on Anatomy Park (Location). He appears in the episode of the same name Anatomy Park (Episode).",
"appearance": [
"s1e3"
],
"died": "s1e3",
"death_note": ""
},
{
"name": "Ruben",
"image": "",
"description": "Ruben was a character who appeared in the episode \"Anatomy Park (Episode)\". He is an old homeless man who has a miniature Anatomy Park (Location) built inside of his body. He is voiced by Jess Harnell.",
"appearance": [
"s1e3"
],
"died": "s1e3",
"death_note": ""
},
{
"name": "Tom Randolph",
"image": "",
"description": "Tom Randolph is a news reporter for an unknown news station, situated in New York. At Christmas he reported on how a Ruben was floating above the USA, with his huge red nose overshadowing New York. He somehow managed to keep his cool while standing under the largest living thing to float above him, and could fall down at any time. He presumably also reported on the blood rain that followed not long after.",
"appearance": [
"s1e3"
],
"died": "",
"death_note": ""
},
{
"name": "Tuberculosis",
"image": "",
"description": "",
"appearance": [
"s1e3"
],
"died": "s1e3",
"death_note": ""
},
{
"name": "Cynthia",
"image": "",
"description": "Cynthia was one of the Zigerions who appeared in the episode M. Night Shaym-Aliens! She is the secretary of Prince Nebulon and she kept constantly appearing multiple times in front of him, to inform him about the discoloration of the skin on his butthole-flaps really loudly, humiliating him in front of everyone.",
"appearance": [
"s1e4"
],
"died": "s1e4",
"death_note": ""
},
{
"name": "Kevin",
"image": "",
"description": "Kevin was a minor character featured in the episode M. Night Shaym-Aliens!. He is an unassuming Zigerion that is often picked on for his nerdy disposition. Kevin was directly responsible for researching human nudity which resulted in the creation of a lifelike Morty simulation.",
"appearance": [
"s1e4"
],
"died": "s1e4",
"death_note": ""
},
{
"name": "Mr. Marklovitz",
"image": "",
"description": "Mr. Marklovitz was the CEO of the Haas & Milan company and Jerry old boss. He first appeared in the episode M. Night Shaym-Aliens! where he fired Jerry, but he has since been seen making background cameos in a few future episodes. According to the Galactic Federation website, his role as CEO was eventually replaced by Kl\u2019iiik Mijupsrit, in turn of the alien immigration events at the end of \"The Wedding Squanchers\".",
"appearance": [
"s1e4"
],
"died": "",
"death_note": ""
},
{
"name": "Prince Nebulon",
"image": "",
"description": "Prince Nebulon was the leader of the Zigerions in Rick and Morty. He appears as the main antagonist in M. Night Shaym-Aliens!. He has a long-standing grudge against Rick and is committed to stealing the recipe for concentrated dark matter from him. He is apparently concerned with discoloration of his butthole flaps.",
"appearance": [
"s1e4"
],
"died": "s1e4",
"death_note": ""
},
{
"name": "Stu",
"image": "",
"description": "Stu is a Zigerion on the team of scammers attempting to steal Rick's recipe for concentrated dark matter in the episode M. Night Shaym-Aliens! He is the Zigerion who discovers Jerry Smith presence in the simulation and alerts Prince Nebulon. Like the rest of the Zigerions aboard the spacecraft, he is killed at the end of the episode when the \"formula\" they believe they scammed from Rick causes a massive explosion. He is voiced by wikipedia:Maurice LaMarche",
"appearance": [
"s1e4"
],
"died": "s1e4",
"death_note": ""
},
{
"name": "Dale",
"image": "",
"description": "Dale was a giant that appeared in the episode \"Meeseeks and Destroy\".",
"appearance": [
"s1e5"
],
"died": "s1e5",
"death_note": ""
},
{
"name": "Evil Beth Clone",
"image": "",
"description": "Evil Beth Clone was an evil alternate version of Beth Smith who appeared in the episode Meeseeks and Destroy. She is a clone from an alternate reality, possessed by a demonic alien spirit from another dimension's future. She is voiced by Sarah Chalke.",
"appearance": [
"s1e5"
],
"died": "s1e5",
"death_note": ""
},
{
"name": "Evil Jerry Clone",
"image": "",
"description": "Evil Jerry Clone was an evil alternate version of Jerry Smith who appeared in the episode Meeseeks and Destroy. He was a clone from an alternate reality, possessed by a demonic alien spirit from another dimension's future.",
"appearance": [
"s1e5"
],
"died": "s1e5",
"death_note": ""
},
{
"name": "Evil Summer Clone",
"image": "",
"description": "Evil Summer Clone is an evil alternate version of Summer Smith who appeared in the episode Meeseeks and Destroy. She is a clone from an alternate reality, possessed by a demonic alien spirit from another dimension's future.",
"appearance": [
"s1e5"
],
"died": "s1e5",
"death_note": ""
},
{
"name": "King Jellybean",
"image": "",
"description": "King Jellybean (also referred to as Mr. Jellybean) was a character featured in the episode \"Meeseeks and Destroy\". King Jellybean is a giant anthropomorphic jelly bean. It was later revealed that he was the king of a poor village that Rick and Morty agreed to help.",
"appearance": [
"s1e5"
],
"died": "s1e5",
"death_note": ""
},
{
"name": "Mr. Meeseeks",
"image": "",
"description": "Mr. Meeseeks (voiced by Justin Roiland) is the name of all the Meeseeks summoned by activating a Meeseeks Box. The Meeseeks appear in the fifth episode of the first season, \"Meeseeks and Destroy\". They are known to inhabit planets across the universe.",
"appearance": [
"s1e5",
"s2e2",
"s3e8"
],
"died": "s1e5",
"death_note": ""
},
{
"name": "Samantha",
"image": "",
"description": "Samantha is a recurring background character in Rick and Morty (TV series) who was later given individuality when she made her first speaking appearance in the Season 2 episode, \"Meeseeks and Destroy\", promoting her to a minor character.",
"appearance": [
"s1e5",
"s1e11"
],
"died": "",
"death_note": ""
},
{
"name": "Tammy Gueterman",
"image": "",
"description": "Tammy Gueterman is a deep-cover agent for the Galactic Federation. She is also, possibly as a disguise, a student at Harry Herpson High School and a friend of Summer Smith. She became engaged to Birdperson and planned a wedding as a ploy to gather as many enemies of the Galactic Federation in one location in order to capture and arrest them. After the fall of the Federation, she became the leader of the remains, and will likely serve as the show's main antagonist. She is voiced by Cassie Steele.",
"appearance": [
"s1e5",
"s1e11",
"s2e5",
"s2e10",
"s3e1"
],
"died": "",
"death_note": ""
},
{
"name": "Brad",
"image": "",
"description": "Brad is a recurring character in Rick and Morty and Jessica's ex-boyfriend. He is a student at Harry Herpson High School, along with Morty and Summer. He is shown to be a jock who plays football (and possibly other sports) for the high school.",
"appearance": [
"s1e6",
"s1e11",
"s3e6"
],
"died": "s1e6",
"death_note": "Died in Dimension C-137"
},
{
"name": "Cronenberg Morty",
"image": "",
"description": "Cronenberg Morty is a version of Morty Smith who originates from Cronenberg World. In the episode \"Rick Potion No. 9\", Cronenberg Rick and Cronenberg Morty take a portal to Earth C-137 after they discovered that C-137 Rick turned the entire population of Earth, except Beth, Jerry and Summer, into Cronenbergs. Cronenberg Rick and Cronenberg Morty did this because they turned the entire population of Cronenberg World into normal Humans and wanted to live in a world where they would fit in.",
"appearance": [
"s1e6",
"s1e10"
],
"died": "",
"death_note": ""
},
{
"name": "Cronenberg Rick",
"image": "",
"description": "Cronenberg Rick is a version of Rick Sanchez who originates from Cronenberg World. In the episode \"Rick Potion No. 9\" Cronenberg Rick and Cronenberg Morty take a portal to Earth C-137 after they discovered that C-137 Rick turned the entire population of Earth, except Beth, Jerry and Summer, into Cronenbergs. Cronenberg Rick and Cronenberg Morty did this because they turned the entire population of Cronenberg World into normal Humans and wanted a world where they would fit in.",
"appearance": [
"s1e6",
"s1e10"
],
"died": "",
"death_note": ""
},
{
"name": "MC Haps",
"image": "",
"description": "MC Haps is a rapper who first appeared in the episode, \"Rick Potion 9 and has made several background appearances since, mainly in the audience at house parties. He is voiced by Dan Harmon.",
"appearance": [
"s1e6",
"s1e11",
"s2e7",
"s3e4"
],
"died": "s1e6",
"death_note": "Died in Dimension C-137"
},
{
"name": "Morty Smith (replacement dimension)",
"image": "",
"description": "Morty Smith is the version of Morty who resided in the Replacement dimension from the episode Rick Potion No. 9. He is voiced by Justin Roiland.",
"appearance": [
"s1e6"
],
"died": "s1e6",
"death_note": ""
},
{
"name": "Nancy",
"image": "",
"description": "Nancy is a classmate and friend of Summer who initially only appeared in cameos in the episodes, \"Rick Potion No. 9, and Something Ricked This Way Comes, usually within small crowds. She made her first official appearance in the episode \"Ricksy Business\". Where she attends Rick party at the disdain of Summer.",
"appearance": [
"s1e6",
"s1e11",
"s3e4",
"s3e6",
"s3e8"
],
"died": "s1e6",
"death_note": "Died in Dimension C-137"
},
{
"name": "Rick Sanchez (replacement dimension)",
"image": "",
"description": "Rick Sanchez is the version of Rick who resided in the Replacement Dimension from the episode Rick Potion No. 9. He is voiced by Justin Roiland.",
"appearance": [
"s1e6"
],
"died": "s1e6",
"death_note": ""
},
{
"name": "Jerry Smith",
"image": "Jerry_Smith.png",
"description": "Jerry Smith is the ex-husband of Beth Smith (replacement dimension), and the father to Summer Smith (replacement dimension) and a deceased Morty Smith (replacement dimension). Though, he currently acts as the father, and son-in-law, of the Morty Smith and Rick Sanchez from Dimension C-137, respectively. Jerry always tries to think of the best interest of the family, but his attempt to be the patriarch of the family can often be misguided by his self-centered nature. This causes him a great deal of conflict with Rick, as his father-in-law clearly has no respect for him whatsoever.",
"appearance": [
"s1e6",
"s1e7",
"s1e8",
"s1e9",
"s1e10",
"s1e11",
"s2e1",
"s2e2",
"s2e3",
"s2e4",
"s2e5",
"s2e7",
"s2e8",
"s2e9",
"s2e10",
"s3e1",
"s3e2",
"s3e3",
"s3e5",
"s3e7",
"s3e8",
"s3e9",
"s3e10"
],
"died": "",
"death_note": ""
},
{
"name": "Beth Smith",
"image": "Beth_Smith.png",
"description": "Beth Smith (n\u00e9e Sanchez) is the daughter of a deceased Rick Sanchez (replacement dimension), the ex-wife of Jerry Smith, and the mother of Summer Smith and a deceased Morty Smith (replacement dimension). She currently acts as the mother, and daughter, of the Morty Smith and Rick Sanchez from Dimension C-137, respectively. She is currently employed as a veterinary surgeon at St. Equis Hospital.",
"appearance": [
"s1e6",
"s1e7",
"s1e8",
"s1e9",
"s1e10",
"s1e11",
"s2e1",
"s2e2",
"s2e3",
"s2e4",
"s2e5",
"s2e7",
"s2e8",
"s2e9",
"s2e10",
"s3e1",
"s3e2",
"s3e3",
"s3e4",
"s3e5",
"s3e6",
"s3e7",
"s3e8",
"s3e9",
"s3e10"
],
"died": "",
"death_note": ""
},
{
"name": "Summer Smith",
"image": "Summer_Smith.png",
"description": "Summer Smith is the teenage daughter of Beth Smith, and Jerry Smith (replacement dimension). She is the sister and granddaughter of her dimension's deceased Morty Smith and Rick Sanchez, respectively. She is the only other member of the Smith Family to be aware of that fact.",
"appearance": [
"s1e6",
"s1e7",
"s1e8",