├── media
├── Jessica.png
├── Snuffles.png
├── Beth_Smith.png
├── Jerry_Smith.png
├── Morty_Smith.png
├── Rick_Sanchez.png
├── Summer_Smith.png
└── The_President.png
├── Rick-and-Morty-Characters-Timeline-Static.png
├── README.md
├── LICENSE
├── index.html
├── main.js
├── main.css
└── data.js
/media/Jessica.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Shmakov/Rick-and-Morty-Characters/HEAD/media/Jessica.png
--------------------------------------------------------------------------------
/media/Snuffles.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Shmakov/Rick-and-Morty-Characters/HEAD/media/Snuffles.png
--------------------------------------------------------------------------------
/media/Beth_Smith.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Shmakov/Rick-and-Morty-Characters/HEAD/media/Beth_Smith.png
--------------------------------------------------------------------------------
/media/Jerry_Smith.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Shmakov/Rick-and-Morty-Characters/HEAD/media/Jerry_Smith.png
--------------------------------------------------------------------------------
/media/Morty_Smith.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Shmakov/Rick-and-Morty-Characters/HEAD/media/Morty_Smith.png
--------------------------------------------------------------------------------
/media/Rick_Sanchez.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Shmakov/Rick-and-Morty-Characters/HEAD/media/Rick_Sanchez.png
--------------------------------------------------------------------------------
/media/Summer_Smith.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Shmakov/Rick-and-Morty-Characters/HEAD/media/Summer_Smith.png
--------------------------------------------------------------------------------
/media/The_President.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Shmakov/Rick-and-Morty-Characters/HEAD/media/The_President.png
--------------------------------------------------------------------------------
/Rick-and-Morty-Characters-Timeline-Static.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Shmakov/Rick-and-Morty-Characters/HEAD/Rick-and-Morty-Characters-Timeline-Static.png
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | Rick and Morty Characters Timeline
2 | =======
3 |
4 | Overview
5 | ---------
6 | Demo is available at the GitHub Pages: https://shmakov.github.io/Rick-and-Morty-Characters/.
7 |
8 | Made just for fun. Most of the information is parsed from Rickipedia Wiki.
9 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | MIT License
2 |
3 | Copyright (c) 2017 Shmakov
4 |
5 | Permission is hereby granted, free of charge, to any person obtaining a copy
6 | of this software and associated documentation files (the "Software"), to deal
7 | in the Software without restriction, including without limitation the rights
8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 | copies of the Software, and to permit persons to whom the Software is
10 | furnished to do so, subject to the following conditions:
11 |
12 | The above copyright notice and this permission notice shall be included in all
13 | copies or substantial portions of the Software.
14 |
15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21 | SOFTWARE.
22 |
--------------------------------------------------------------------------------
/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
';
20 | }
21 |
22 | html+= '';
23 |
24 | $('#episodes').html(html);
25 | },
26 |
27 | init_characters: function()
28 | {
29 | var html = '';
30 | for (var i = 0, len = RAM.characters.length; i < len; i++) {
31 | var character = RAM.characters[i];
32 | var appearance = character['appearance'].slice(0); // Copy of the array, so we do not access it by reference
33 | html+= '
';
56 | }
57 |
58 | $('#characters').html(html);
59 | },
60 |
61 | init_tooltips: function()
62 | {
63 | $('.death-note').qtip({
64 | style: {
65 | classes: 'qtip-red qtip-shadow'
66 | }
67 | });
68 | $('.episode').qtip({
69 | style: {
70 | classes: 'qtip-red qtip-shadow'
71 | }
72 | });
73 | $('.character-name span').qtip({
74 | content: {
75 | text: function(event, api) {
76 | var name = $(this).text();
77 | var description = '';
78 | (function() {
79 | api.set('content.title', name);
80 | for (var i = 0, len = RAM.characters.length; i < len; i++) {
81 | var character = RAM.characters[i];
82 | if (character['name'] == name) {
83 | description = character['description'];
84 | if (character['image'] != '') {
85 | description = ' ' + description;
86 | }
87 | break;
88 | }
89 | }
90 | })();
91 | return description;
92 | }
93 | },
94 | position: {
95 | target: 'mouse',
96 | adjust: {
97 | x: 25,
98 | y: 5
99 | }
100 | },
101 | style: {
102 | classes: 'qtip-red qtip-shadow'
103 | }
104 | });
105 | }
106 | };
--------------------------------------------------------------------------------
/main.css:
--------------------------------------------------------------------------------
1 | html {
2 | font-family: 'Trebuchet MS', sans-serif;
3 | -webkit-text-size-adjust: 100%;
4 | -ms-text-size-adjust: 100%;
5 | }
6 | body {
7 | margin: 0;
8 | font-size: 10pt;
9 | color: #793636;
10 | }
11 | html,
12 | body {
13 | height: 100%;
14 | }
15 | a {
16 | color: #05C;
17 | text-decoration: underline;
18 | }
19 | a:hover {
20 | color: #793636;
21 | }
22 | .clear {clear: both;}
23 |
24 | .main {
25 | margin: 20px auto;
26 | }
27 |
28 | div.qtip {
29 | line-height: normal;
30 | }
31 | .qtip-titlebar{
32 | font-size: 14px;
33 | font-weight: bold;
34 | }
35 | .qtip-content{
36 | font-size: 14px;
37 | }
38 |
39 | .header {
40 | margin-bottom: 25px;
41 | }
42 | .header h1 {
43 | padding: 0;
44 | margin: 0;
45 | font-size: 26pt;
46 | text-align: center;
47 | font-weight: bold;
48 | }
49 | .header .small {
50 | font-size: 12pt;
51 | text-align: center;
52 | }
53 |
54 | .seasons {
55 | font-size: 14pt;
56 | }
57 | .seasons .season {
58 | text-align: center;
59 | float: left;
60 | padding: 6px 0;
61 | }
62 |
63 | .episodes {
64 | font-size: 8pt;
65 | }
66 |
67 | .characters {
68 | padding-bottom: 50px;
69 | }
70 | .character-name {
71 | font-size: 8pt;
72 | position: absolute;
73 | text-align: right;
74 | width: 400px;
75 | margin-left: -405px;
76 | margin-top: -4px;
77 | }
78 | .character-name span {
79 | cursor: pointer;
80 | }
81 | div.character-main {
82 | font-weight: bold;
83 | color: #610a0a;
84 | }
85 |
86 | .episodes .episode {
87 | float: left;
88 | overflow: hidden;
89 | text-align: center;
90 | }
91 | div.episodes .last-episode {
92 | border-right: 1px solid #e0a2a2;
93 | }
94 |
95 | .cell {
96 | float: right;
97 | height: 1px;
98 | margin-top: 5px;
99 | }
100 | .cell:after {
101 | content: '';
102 | position: absolute;
103 | /*border-bottom: 1px dotted #d6d6d6;*/
104 | border-bottom: 1px solid #f1f1f1;
105 | height: 4px;
106 | }
107 | div.appeared:after {
108 | border: none;
109 | }
110 |
111 | div.appeared {
112 | border-bottom: 7px solid #dc7878;
113 | }
114 |
115 | .death-dot {
116 | position: absolute;
117 | width: 7px;
118 | height: 7px;
119 | background: #883f3f;
120 | margin-top: 1px;
121 | margin-left: 25px;
122 | cursor: pointer;
123 | }
124 | .death-note {
125 | position: relative;
126 | z-index: 10;
127 | padding: 8px;
128 | margin: -8px;
129 | }
130 |
131 | @media (min-width: 0px) and (max-width: 499px) {
132 | /* episode_width = 12 */
133 | /* character_height = 12 */
134 | .main {
135 | width: 375px;
136 | padding-left: 120px;
137 | padding-right: 20px;
138 | }
139 | .header {
140 | position: relative;
141 | margin-left: -120px;
142 | }
143 | .header h1 {
144 | font-size: 20pt;
145 | padding: 0 10px;
146 | }
147 | .episodes {
148 | font-size: 6pt;
149 | overflow: hidden;
150 | }
151 | .row {
152 | height: 12px; /* character_height */
153 | }
154 | .season-1 {
155 | width: 132px; /* 11 * episode_width */
156 | }
157 | .season-2, .season-3 {
158 | width: 120px; /* 10 * episode_width */
159 | }
160 |
161 | .episodes .episode, .cell, .cell:after {
162 | width: 12px; /* episode_width */
163 | }
164 | div.episodes .last-episode {
165 | width: 11px; /* episode_width - 1 */
166 | }
167 | div.appeared {
168 | border-bottom: 5px solid #dc7878;
169 | }
170 | .death-dot {
171 | width: 5px;
172 | height: 5px;
173 | margin-left: 7px; /* episode_width - death-dot-width */
174 | }
175 | }
176 | @media (min-width: 500px) and (max-width: 1014px) {
177 | /* episode_width = 14 */
178 | /* character_height = 12 */
179 | .main {
180 | width: 434px;
181 | padding-left: 120px;
182 | padding-right: 30px;
183 | }
184 | .header {
185 | position: relative;
186 | margin-left: -120px;
187 | }
188 | .header h1 {
189 | font-size: 20pt;
190 | padding: 0 10px;
191 | }
192 | .row {
193 | height: 12px; /* character_height */
194 | }
195 | .season-1 {
196 | width: 154px; /* 11 * episode_width */
197 | }
198 | .season-2, .season-3 {
199 | width: 140px; /* 10 * episode_width */
200 | }
201 |
202 | .episodes .episode, .cell, .cell:after {
203 | width: 14px; /* episode_width */
204 | }
205 | div.episodes .last-episode {
206 | width: 13px; /* episode_width - 1 */
207 | }
208 | div.appeared {
209 | border-bottom: 5px solid #dc7878;
210 | }
211 | .death-dot {
212 | width: 5px;
213 | height: 5px;
214 | margin-left: 9px; /* episode_width - death-dot-width */
215 | }
216 | }
217 | @media (min-width: 1015px) {
218 | /* episode_width = 25 */
219 | /* character_height = 16 */
220 | .main {
221 | width: 775px;
222 | }
223 | .row {
224 | height: 16px; /* character_height */
225 | }
226 | .character-name {
227 | font-size: 10pt;
228 | }
229 | .season-1 {
230 | width: 275px; /* 11 * episode_width */
231 | }
232 | .season-2, .season-3 {
233 | width: 250px; /* 10 * episode_width */
234 | }
235 |
236 | .episodes .episode, .cell, .cell:after {
237 | width: 25px; /* episode_width */
238 | }
239 | div.episodes .last-episode {
240 | width: 24px; /* episode_width - 1 */
241 | }
242 |
243 | .death-dot {
244 | margin-left: 18px; /* episode_width - death-dot-width */
245 | }
246 | }
247 | @media (min-width: 1015px) and (max-width: 1120px) {
248 | .main {
249 | padding-left: 80px;
250 | }
251 | }
--------------------------------------------------------------------------------
/data.js:
--------------------------------------------------------------------------------
1 | RAM.episodes = [
2 | {
3 | "name": "Pilot",
4 | "season": 1,
5 | "episode": 1,
6 | "code": "s1e1"
7 | },
8 | {
9 | "name": "Lawnmower Dog",
10 | "season": 1,
11 | "episode": 2,
12 | "code": "s1e2"
13 | },
14 | {
15 | "name": "Anatomy Park",
16 | "season": 1,
17 | "episode": 3,
18 | "code": "s1e3"
19 | },
20 | {
21 | "name": "M. Night Shaym-Aliens!",
22 | "season": 1,
23 | "episode": 4,
24 | "code": "s1e4"
25 | },
26 | {
27 | "name": "Meeseeks and Destroy",
28 | "season": 1,
29 | "episode": 5,
30 | "code": "s1e5"
31 | },
32 | {
33 | "name": "Rick Potion #9",
34 | "season": 1,
35 | "episode": 6,
36 | "code": "s1e6"
37 | },
38 | {
39 | "name": "Raising Gazorpazorp",
40 | "season": 1,
41 | "episode": 7,
42 | "code": "s1e7"
43 | },
44 | {
45 | "name": "Rixty Minutes",
46 | "season": 1,
47 | "episode": 8,
48 | "code": "s1e8"
49 | },
50 | {
51 | "name": "Something Ricked This Way Comes",
52 | "season": 1,
53 | "episode": 9,
54 | "code": "s1e9"
55 | },
56 | {
57 | "name": "Close Rick-counters of the Rick Kind",
58 | "season": 1,
59 | "episode": 10,
60 | "code": "s1e10"
61 | },
62 | {
63 | "name": "Ricksy Business",
64 | "season": 1,
65 | "episode": 11,
66 | "code": "s1e11"
67 | },
68 | {
69 | "name": "A Rickle in Time",
70 | "season": 2,
71 | "episode": 1,
72 | "code": "s2e1"
73 | },
74 | {
75 | "name": "Mortynight Run",
76 | "season": 2,
77 | "episode": 2,
78 | "code": "s2e2"
79 | },
80 | {
81 | "name": "Auto Erotic Assimilation",
82 | "season": 2,
83 | "episode": 3,
84 | "code": "s2e3"
85 | },
86 | {
87 | "name": "Total Rickall",
88 | "season": 2,
89 | "episode": 4,
90 | "code": "s2e4"
91 | },
92 | {
93 | "name": "Get Schwifty",
94 | "season": 2,
95 | "episode": 5,
96 | "code": "s2e5"
97 | },
98 | {
99 | "name": "The Ricks Must Be Crazy",
100 | "season": 2,
101 | "episode": 6,
102 | "code": "s2e6"
103 | },
104 | {
105 | "name": "Big Trouble in Little Sanchez",
106 | "season": 2,
107 | "episode": 7,
108 | "code": "s2e7"
109 | },
110 | {
111 | "name": "Interdimensional Cable 2: Tempting Fate",
112 | "season": 2,
113 | "episode": 8,
114 | "code": "s2e8"
115 | },
116 | {
117 | "name": "Look Who's Purging Now",
118 | "season": 2,
119 | "episode": 9,
120 | "code": "s2e9"
121 | },
122 | {
123 | "name": "The Wedding Squanchers",
124 | "season": 2,
125 | "episode": 10,
126 | "code": "s2e10"
127 | },
128 | {
129 | "name": "The Rickshank Rickdemption",
130 | "season": 3,
131 | "episode": 1,
132 | "code": "s3e1"
133 | },
134 | {
135 | "name": "Rickmancing the Stone",
136 | "season": 3,
137 | "episode": 2,
138 | "code": "s3e2"
139 | },
140 | {
141 | "name": "Pickle Rick",
142 | "season": 3,
143 | "episode": 3,
144 | "code": "s3e3"
145 | },
146 | {
147 | "name": "Vindicators 3: The Return of Worldender",
148 | "season": 3,
149 | "episode": 4,
150 | "code": "s3e4"
151 | },
152 | {
153 | "name": "The Whirly Dirly Conspiracy",
154 | "season": 3,
155 | "episode": 5,
156 | "code": "s3e5"
157 | },
158 | {
159 | "name": "Rest and Ricklaxation",
160 | "season": 3,
161 | "episode": 6,
162 | "code": "s3e6"
163 | },
164 | {
165 | "name": "The Ricklantis Mixup",
166 | "season": 3,
167 | "episode": 7,
168 | "code": "s3e7"
169 | },
170 | {
171 | "name": "Morty's Mind Blowers",
172 | "season": 3,
173 | "episode": 8,
174 | "code": "s3e8"
175 | },
176 | {
177 | "name": "The ABC's of Beth",
178 | "season": 3,
179 | "episode": 9,
180 | "code": "s3e9"
181 | },
182 | {
183 | "name": "The Rickchurian Mortydate",
184 | "season": 3,
185 | "episode": 10,
186 | "code": "s3e10"
187 | }
188 | ];
189 | RAM.characters = [
190 | {
191 | "name": "Morty Smith",
192 | "image": "Morty_Smith.png",
193 | "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.",
194 | "appearance": [
195 | "s1e1",
196 | "s1e2",
197 | "s1e3",
198 | "s1e4",
199 | "s1e5",
200 | "s1e6",
201 | "s1e7",
202 | "s1e8",
203 | "s1e9",
204 | "s1e10",
205 | "s1e11",
206 | "s2e1",
207 | "s2e2",
208 | "s2e3",
209 | "s2e4",
210 | "s2e5",
211 | "s2e6",
212 | "s2e7",
213 | "s2e8",
214 | "s2e9",
215 | "s2e10",
216 | "s3e1",
217 | "s3e2",
218 | "s3e3",
219 | "s3e4",
220 | "s3e5",
221 | "s3e6",
222 | "s3e7",
223 | "s3e8",
224 | "s3e9",
225 | "s3e10"
226 | ],
227 | "died": "",
228 | "death_note": ""
229 | },
230 | {
231 | "name": "Rick Sanchez",
232 | "image": "Rick_Sanchez.png",
233 | "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.",
234 | "appearance": [
235 | "s1e1",
236 | "s1e2",
237 | "s1e3",
238 | "s1e4",
239 | "s1e5",
240 | "s1e6",
241 | "s1e7",
242 | "s1e8",
243 | "s1e9",
244 | "s1e10",
245 | "s1e11",
246 | "s2e1",
247 | "s2e2",
248 | "s2e3",
249 | "s2e4",
250 | "s2e5",
251 | "s2e6",
252 | "s2e7",
253 | "s2e8",
254 | "s2e9",
255 | "s2e10",
256 | "s3e1",
257 | "s3e2",
258 | "s3e3",
259 | "s3e4",
260 | "s3e5",
261 | "s3e6",
262 | "s3e7",
263 | "s3e8",
264 | "s3e9",
265 | "s3e10"
266 | ],
267 | "died": "",
268 | "death_note": ""
269 | },
270 | {
271 | "name": "Jerry Smith (C-137)",
272 | "image": "Jerry_Smith.png",
273 | "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.",
274 | "appearance": [
275 | "s1e1",
276 | "s1e2",
277 | "s1e3",
278 | "s1e4",
279 | "s1e5",
280 | "s1e6",
281 | "s3e1"
282 | ],
283 | "died": "",
284 | "death_note": ""
285 | },
286 | {
287 | "name": "Beth Smith (C-137)",
288 | "image": "Beth_Smith.png",
289 | "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.",
290 | "appearance": [
291 | "s1e1",
292 | "s1e2",
293 | "s1e3",
294 | "s1e5",
295 | "s1e6",
296 | "s3e1"
297 | ],
298 | "died": "",
299 | "death_note": ""
300 | },
301 | {
302 | "name": "Summer Smith (C-137)",
303 | "image": "Summer_Smith.png",
304 | "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.",
305 | "appearance": [
306 | "s1e1",
307 | "s1e2",
308 | "s1e3",
309 | "s1e5",
310 | "s1e6",
311 | "s3e1"
312 | ],
313 | "died": "",
314 | "death_note": ""
315 | },
316 | {
317 | "name": "Mr. Goldenfold",
318 | "image": "",
319 | "description": "Mr. Goldenfold is Morty Smith eccentric math teacher. He is voiced by Brandon Johnson.",
320 | "appearance": [
321 | "s1e1",
322 | "s1e2",
323 | "s1e6",
324 | "s1e9",
325 | "s2e5",
326 | "s2e6",
327 | "s2e7",
328 | "s2e10",
329 | "s3e1",
330 | "s3e3",
331 | "s3e6",
332 | "s3e9"
333 | ],
334 | "died": "s1e6",
335 | "death_note": "Died in Dimension C-137"
336 | },
337 | {
338 | "name": "Frank Palicky",
339 | "image": "",
340 | "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.",
341 | "appearance": [
342 | "s1e1"
343 | ],
344 | "died": "s1e1",
345 | "death_note": ""
346 | },
347 | {
348 | "name": "Jessica",
349 | "image": "Jessica.png",
350 | "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.",
351 | "appearance": [
352 | "s1e1",
353 | "s1e6",
354 | "s1e11",
355 | "s2e2",
356 | "s2e6",
357 | "s2e7",
358 | "s3e5",
359 | "s3e6",
360 | "s3e7",
361 | "s3e8",
362 | "s3e9"
363 | ],
364 | "died": "s1e6",
365 | "death_note": "Died in Dimension C-137"
366 | },
367 | {
368 | "name": "Davin",
369 | "image": "",
370 | "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.",
371 | "appearance": [
372 | "s1e1",
373 | "s1e6"
374 | ],
375 | "died": "s1e6",
376 | "death_note": "Died in Dimension C-137"
377 | },
378 | {
379 | "name": "Principal Vagina",
380 | "image": "",
381 | "description": "Principal Gene Vagina is the principal of Harry Herpson High School. He is voiced by wikipedia:Phil Hendrie",
382 | "appearance": [
383 | "s1e1",
384 | "s1e5",
385 | "s1e6",
386 | "s2e5",
387 | "s2e7",
388 | "s3e3",
389 | "s3e6",
390 | "s3e8",
391 | "s3e9"
392 | ],
393 | "died": "s1e6",
394 | "death_note": "Died in Dimension C-137"
395 | },
396 | {
397 | "name": "Hookah Alien",
398 | "image": "",
399 | "description": "",
400 | "appearance": [
401 | "s1e1"
402 | ],
403 | "died": "",
404 | "death_note": ""
405 | },
406 | {
407 | "name": "Glenn",
408 | "image": "",
409 | "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.",
410 | "appearance": [
411 | "s1e1"
412 | ],
413 | "died": "s1e1",
414 | "death_note": ""
415 | },
416 | {
417 | "name": "Jessica's Friend",
418 | "image": "",
419 | "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.",
420 | "appearance": [
421 | "s1e1",
422 | "s1e6",
423 | "s1e11",
424 | "s2e6",
425 | "s2e7",
426 | "s3e4",
427 | "s3e6"
428 | ],
429 | "died": "s1e6",
430 | "death_note": "Died in Dimension C-137"
431 | },
432 | {
433 | "name": "Bill (The Dog)",
434 | "image": "",
435 | "description": "Bill is a character that appears in the episode Lawnmower Dog as a one time character. ",
436 | "appearance": [
437 | "s1e2"
438 | ],
439 | "died": "",
440 | "death_note": ""
441 | },
442 | {
443 | "name": "Centaur",
444 | "image": "",
445 | "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.",
446 | "appearance": [
447 | "s1e2"
448 | ],
449 | "died": "s1e2",
450 | "death_note": ""
451 | },
452 | {
453 | "name": "Creepy Little Girl",
454 | "image": "",
455 | "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.",
456 | "appearance": [
457 | "s1e2"
458 | ],
459 | "died": "s1e2",
460 | "death_note": ""
461 | },
462 | {
463 | "name": "Melissa",
464 | "image": "",
465 | "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.",
466 | "appearance": [
467 | "s1e2"
468 | ],
469 | "died": "",
470 | "death_note": ""
471 | },
472 | {
473 | "name": "Mrs. Pancakes",
474 | "image": "",
475 | "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.",
476 | "appearance": [
477 | "s1e2",
478 | "s3e6"
479 | ],
480 | "died": "s1e2",
481 | "death_note": ""
482 | },
483 | {
484 | "name": "Scary Brandon",
485 | "image": "",
486 | "description": "",
487 | "appearance": [
488 | "s1e2"
489 | ],
490 | "died": "",
491 | "death_note": ""
492 | },
493 | {
494 | "name": "Scary Glenn",
495 | "image": "",
496 | "description": "Scary Glenn Johnson appears in the after-credit scene in Lawnmower Dog, being the new teacher for Scary class in Scary Terry dream.",
497 | "appearance": [
498 | "s1e2"
499 | ],
500 | "died": "",
501 | "death_note": ""
502 | },
503 | {
504 | "name": "Scary Terry",
505 | "image": "",
506 | "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.",
507 | "appearance": [
508 | "s1e2"
509 | ],
510 | "died": "",
511 | "death_note": ""
512 | },
513 | {
514 | "name": "Snuffles",
515 | "image": "Snuffles.png",
516 | "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.",
517 | "appearance": [
518 | "s1e2",
519 | "s1e10",
520 | "s2e4",
521 | "s3e8",
522 | "s3e9"
523 | ],
524 | "died": "",
525 | "death_note": ""
526 | },
527 | {
528 | "name": "Alexander",
529 | "image": "",
530 | "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.",
531 | "appearance": [
532 | "s1e3"
533 | ],
534 | "died": "s1e3",
535 | "death_note": ""
536 | },
537 | {
538 | "name": "Annie",
539 | "image": "",
540 | "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)).",
541 | "appearance": [
542 | "s1e3"
543 | ],
544 | "died": "",
545 | "death_note": ""
546 | },
547 | {
548 | "name": "Bill",
549 | "image": "",
550 | "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. ",
551 | "appearance": [
552 | "s1e3"
553 | ],
554 | "died": "",
555 | "death_note": ""
556 | },
557 | {
558 | "name": "Bubonic Plague",
559 | "image": "",
560 | "description": "",
561 | "appearance": [
562 | "s1e3"
563 | ],
564 | "died": "",
565 | "death_note": ""
566 | },
567 | {
568 | "name": "Dr. Xenon Bloom",
569 | "image": "",
570 | "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.",
571 | "appearance": [
572 | "s1e3"
573 | ],
574 | "died": "s1e3",
575 | "death_note": ""
576 | },
577 | {
578 | "name": "Eric McMan",
579 | "image": "",
580 | "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. ",
581 | "appearance": [
582 | "s1e3"
583 | ],
584 | "died": "",
585 | "death_note": ""
586 | },
587 | {
588 | "name": "Ethan",
589 | "image": "",
590 | "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)\".",
591 | "appearance": [
592 | "s1e3",
593 | "s2e5",
594 | "s3e5"
595 | ],
596 | "died": "",
597 | "death_note": ""
598 | },
599 | {
600 | "name": "Gonorrhea",
601 | "image": "",
602 | "description": "",
603 | "appearance": [
604 | "s1e3"
605 | ],
606 | "died": "s1e3",
607 | "death_note": ""
608 | },
609 | {
610 | "name": "Hepatitis A",
611 | "image": "",
612 | "description": "",
613 | "appearance": [
614 | "s1e3"
615 | ],
616 | "died": "s1e3",
617 | "death_note": ""
618 | },
619 | {
620 | "name": "Hepatitis C",
621 | "image": "",
622 | "description": "",
623 | "appearance": [
624 | "s1e3"
625 | ],
626 | "died": "s1e3",
627 | "death_note": ""
628 | },
629 | {
630 | "name": "Jacob",
631 | "image": "",
632 | "description": "Jacob Philip is a family friend of Jerry Smith's parents, and is later revealed to be Joyce's lover.",
633 | "appearance": [
634 | "s1e3"
635 | ],
636 | "died": "",
637 | "death_note": ""
638 | },
639 | {
640 | "name": "Joyce Smith",
641 | "image": "",
642 | "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.",
643 | "appearance": [
644 | "s1e3"
645 | ],
646 | "died": "",
647 | "death_note": ""
648 | },
649 | {
650 | "name": "Leonard Smith",
651 | "image": "",
652 | "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.",
653 | "appearance": [
654 | "s1e3"
655 | ],
656 | "died": "",
657 | "death_note": ""
658 | },
659 | {
660 | "name": "Poncho",
661 | "image": "",
662 | "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).",
663 | "appearance": [
664 | "s1e3"
665 | ],
666 | "died": "s1e3",
667 | "death_note": ""
668 | },
669 | {
670 | "name": "Roger",
671 | "image": "",
672 | "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).",
673 | "appearance": [
674 | "s1e3"
675 | ],
676 | "died": "s1e3",
677 | "death_note": ""
678 | },
679 | {
680 | "name": "Ruben",
681 | "image": "",
682 | "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.",
683 | "appearance": [
684 | "s1e3"
685 | ],
686 | "died": "s1e3",
687 | "death_note": ""
688 | },
689 | {
690 | "name": "Tom Randolph",
691 | "image": "",
692 | "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.",
693 | "appearance": [
694 | "s1e3"
695 | ],
696 | "died": "",
697 | "death_note": ""
698 | },
699 | {
700 | "name": "Tuberculosis",
701 | "image": "",
702 | "description": "",
703 | "appearance": [
704 | "s1e3"
705 | ],
706 | "died": "s1e3",
707 | "death_note": ""
708 | },
709 | {
710 | "name": "Cynthia",
711 | "image": "",
712 | "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.",
713 | "appearance": [
714 | "s1e4"
715 | ],
716 | "died": "s1e4",
717 | "death_note": ""
718 | },
719 | {
720 | "name": "Kevin",
721 | "image": "",
722 | "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.",
723 | "appearance": [
724 | "s1e4"
725 | ],
726 | "died": "s1e4",
727 | "death_note": ""
728 | },
729 | {
730 | "name": "Mr. Marklovitz",
731 | "image": "",
732 | "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\".",
733 | "appearance": [
734 | "s1e4"
735 | ],
736 | "died": "",
737 | "death_note": ""
738 | },
739 | {
740 | "name": "Prince Nebulon",
741 | "image": "",
742 | "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.",
743 | "appearance": [
744 | "s1e4"
745 | ],
746 | "died": "s1e4",
747 | "death_note": ""
748 | },
749 | {
750 | "name": "Stu",
751 | "image": "",
752 | "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",
753 | "appearance": [
754 | "s1e4"
755 | ],
756 | "died": "s1e4",
757 | "death_note": ""
758 | },
759 | {
760 | "name": "Dale",
761 | "image": "",
762 | "description": "Dale was a giant that appeared in the episode \"Meeseeks and Destroy\".",
763 | "appearance": [
764 | "s1e5"
765 | ],
766 | "died": "s1e5",
767 | "death_note": ""
768 | },
769 | {
770 | "name": "Evil Beth Clone",
771 | "image": "",
772 | "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.",
773 | "appearance": [
774 | "s1e5"
775 | ],
776 | "died": "s1e5",
777 | "death_note": ""
778 | },
779 | {
780 | "name": "Evil Jerry Clone",
781 | "image": "",
782 | "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.",
783 | "appearance": [
784 | "s1e5"
785 | ],
786 | "died": "s1e5",
787 | "death_note": ""
788 | },
789 | {
790 | "name": "Evil Summer Clone",
791 | "image": "",
792 | "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.",
793 | "appearance": [
794 | "s1e5"
795 | ],
796 | "died": "s1e5",
797 | "death_note": ""
798 | },
799 | {
800 | "name": "King Jellybean",
801 | "image": "",
802 | "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.",
803 | "appearance": [
804 | "s1e5"
805 | ],
806 | "died": "s1e5",
807 | "death_note": ""
808 | },
809 | {
810 | "name": "Mr. Meeseeks",
811 | "image": "",
812 | "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.",
813 | "appearance": [
814 | "s1e5",
815 | "s2e2",
816 | "s3e8"
817 | ],
818 | "died": "s1e5",
819 | "death_note": ""
820 | },
821 | {
822 | "name": "Samantha",
823 | "image": "",
824 | "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.",
825 | "appearance": [
826 | "s1e5",
827 | "s1e11"
828 | ],
829 | "died": "",
830 | "death_note": ""
831 | },
832 | {
833 | "name": "Tammy Gueterman",
834 | "image": "",
835 | "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.",
836 | "appearance": [
837 | "s1e5",
838 | "s1e11",
839 | "s2e5",
840 | "s2e10",
841 | "s3e1"
842 | ],
843 | "died": "",
844 | "death_note": ""
845 | },
846 | {
847 | "name": "Brad",
848 | "image": "",
849 | "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.",
850 | "appearance": [
851 | "s1e6",
852 | "s1e11",
853 | "s3e6"
854 | ],
855 | "died": "s1e6",
856 | "death_note": "Died in Dimension C-137"
857 | },
858 | {
859 | "name": "Cronenberg Morty",
860 | "image": "",
861 | "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.",
862 | "appearance": [
863 | "s1e6",
864 | "s1e10"
865 | ],
866 | "died": "",
867 | "death_note": ""
868 | },
869 | {
870 | "name": "Cronenberg Rick",
871 | "image": "",
872 | "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.",
873 | "appearance": [
874 | "s1e6",
875 | "s1e10"
876 | ],
877 | "died": "",
878 | "death_note": ""
879 | },
880 | {
881 | "name": "MC Haps",
882 | "image": "",
883 | "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.",
884 | "appearance": [
885 | "s1e6",
886 | "s1e11",
887 | "s2e7",
888 | "s3e4"
889 | ],
890 | "died": "s1e6",
891 | "death_note": "Died in Dimension C-137"
892 | },
893 | {
894 | "name": "Morty Smith (replacement dimension)",
895 | "image": "",
896 | "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.",
897 | "appearance": [
898 | "s1e6"
899 | ],
900 | "died": "s1e6",
901 | "death_note": ""
902 | },
903 | {
904 | "name": "Nancy",
905 | "image": "",
906 | "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.",
907 | "appearance": [
908 | "s1e6",
909 | "s1e11",
910 | "s3e4",
911 | "s3e6",
912 | "s3e8"
913 | ],
914 | "died": "s1e6",
915 | "death_note": "Died in Dimension C-137"
916 | },
917 | {
918 | "name": "Rick Sanchez (replacement dimension)",
919 | "image": "",
920 | "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.",
921 | "appearance": [
922 | "s1e6"
923 | ],
924 | "died": "s1e6",
925 | "death_note": ""
926 | },
927 | {
928 | "name": "Jerry Smith",
929 | "image": "Jerry_Smith.png",
930 | "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.",
931 | "appearance": [
932 | "s1e6",
933 | "s1e7",
934 | "s1e8",
935 | "s1e9",
936 | "s1e10",
937 | "s1e11",
938 | "s2e1",
939 | "s2e2",
940 | "s2e3",
941 | "s2e4",
942 | "s2e5",
943 | "s2e7",
944 | "s2e8",
945 | "s2e9",
946 | "s2e10",
947 | "s3e1",
948 | "s3e2",
949 | "s3e3",
950 | "s3e5",
951 | "s3e7",
952 | "s3e8",
953 | "s3e9",
954 | "s3e10"
955 | ],
956 | "died": "",
957 | "death_note": ""
958 | },
959 | {
960 | "name": "Beth Smith",
961 | "image": "Beth_Smith.png",
962 | "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.",
963 | "appearance": [
964 | "s1e6",
965 | "s1e7",
966 | "s1e8",
967 | "s1e9",
968 | "s1e10",
969 | "s1e11",
970 | "s2e1",
971 | "s2e2",
972 | "s2e3",
973 | "s2e4",
974 | "s2e5",
975 | "s2e7",
976 | "s2e8",
977 | "s2e9",
978 | "s2e10",
979 | "s3e1",
980 | "s3e2",
981 | "s3e3",
982 | "s3e4",
983 | "s3e5",
984 | "s3e6",
985 | "s3e7",
986 | "s3e8",
987 | "s3e9",
988 | "s3e10"
989 | ],
990 | "died": "",
991 | "death_note": ""
992 | },
993 | {
994 | "name": "Summer Smith",
995 | "image": "Summer_Smith.png",
996 | "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.",
997 | "appearance": [
998 | "s1e6",
999 | "s1e7",
1000 | "s1e8",
1001 | "s1e9",
1002 | "s1e10",
1003 | "s1e11",
1004 | "s2e1",
1005 | "s2e3",
1006 | "s2e4",
1007 | "s2e5",
1008 | "s2e6",
1009 | "s2e7",
1010 | "s2e8",
1011 | "s2e9",
1012 | "s2e10",
1013 | "s3e1",
1014 | "s3e2",
1015 | "s3e3",
1016 | "s3e4",
1017 | "s3e5",
1018 | "s3e6",
1019 | "s3e8",
1020 | "s3e9",
1021 | "s3e10"
1022 | ],
1023 | "died": "",
1024 | "death_note": ""
1025 | },
1026 | {
1027 | "name": "Gwendolyn",
1028 | "image": "",
1029 | "description": "Gwendolyn is a sex robot Rick Sanchez buys for Morty Smith at a Pawn Shop Planet in outer space.",
1030 | "appearance": [
1031 | "s1e7",
1032 | "s2e2"
1033 | ],
1034 | "died": "",
1035 | "death_note": ""
1036 | },
1037 | {
1038 | "name": "Ma-Sha",
1039 | "image": "",
1040 | "description": "Ma-Sha is a character featured in the episode, \"Raising Gazorpazorp\", and the ruler of the planet of the same name (Gazorpazorp). She is guest voiced by Claudia Black.",
1041 | "appearance": [
1042 | "s1e7"
1043 | ],
1044 | "died": "",
1045 | "death_note": ""
1046 | },
1047 | {
1048 | "name": "Morty Jr.",
1049 | "image": "",
1050 | "description": "Mortimer \"Morty\" Smith Jr. is Morty Smith's son. He was conceived by Morty and a Gazorpians sex robot named Gwendolyn in the episode \"Raising Gazorpazorp\". Morty Jr. grew from an infant to a full adult at a hyper-increased rate, allowing him to quickly outgrow his father.",
1051 | "appearance": [
1052 | "s1e7"
1053 | ],
1054 | "died": "",
1055 | "death_note": ""
1056 | },
1057 | {
1058 | "name": "Pawnshop Clerk",
1059 | "image": "",
1060 | "description": "Pawnshop Clerk is the only known employee at Pawn Shop Planet. His species eats sulfur. ",
1061 | "appearance": [
1062 | "s1e7"
1063 | ],
1064 | "died": "",
1065 | "death_note": ""
1066 | },
1067 | {
1068 | "name": "Ants in my Eyes Johnson",
1069 | "image": "",
1070 | "description": "Ants in my Eyes Johnson is a store owner who appears in a commercial in Rixty Minutes for his electronics store.",
1071 | "appearance": [
1072 | "s1e8"
1073 | ],
1074 | "died": "",
1075 | "death_note": ""
1076 | },
1077 | {
1078 | "name": "Baby Legs",
1079 | "image": "",
1080 | "description": "Baby Legs is a character who appeared in Rixty Minutes.",
1081 | "appearance": [
1082 | "s1e8"
1083 | ],
1084 | "died": "",
1085 | "death_note": ""
1086 | },
1087 | {
1088 | "name": "Bobby Moynihan",
1089 | "image": "",
1090 | "description": "Bobby Moynihan is an American actor and comedian.",
1091 | "appearance": [
1092 | "s1e8"
1093 | ],
1094 | "died": "",
1095 | "death_note": ""
1096 | },
1097 | {
1098 | "name": "David Letterman",
1099 | "image": "",
1100 | "description": "David Letterman is a talk-show host of Late Night with David Letterman.",
1101 | "appearance": [
1102 | "s1e8"
1103 | ],
1104 | "died": "",
1105 | "death_note": ""
1106 | },
1107 | {
1108 | "name": "Garmanarnar",
1109 | "image": "",
1110 | "description": "Garmanarnar is mentioned in the episode Rixty Minutes as a recurring player on an alternate dimension's version of wikipedia:Saturday Night Live.",
1111 | "appearance": [
1112 | "s1e8"
1113 | ],
1114 | "died": "",
1115 | "death_note": ""
1116 | },
1117 | {
1118 | "name": "Gazorpazorpfield (Character)",
1119 | "image": "",
1120 | "description": "Gazorpazorpfield|Gazorpazorpfield}}",
1121 | "appearance": [
1122 | "s1e8"
1123 | ],
1124 | "died": "",
1125 | "death_note": ""
1126 | },
1127 | {
1128 | "name": "Hamster in Butt World",
1129 | "image": "",
1130 | "description": "Hamster in Butt World is an alternate dimension that appeared in the episode Rixty Minutes.",
1131 | "appearance": [
1132 | "s1e8"
1133 | ],
1134 | "died": "",
1135 | "death_note": ""
1136 | },
1137 | {
1138 | "name": "Hole in the Wall Where the Men Can See it All",
1139 | "image": "",
1140 | "description": "Hole in the Wall Where the Men Can See it All is a character that appeared in the episode Rixty Minutes.",
1141 | "appearance": [
1142 | "s1e8"
1143 | ],
1144 | "died": "",
1145 | "death_note": ""
1146 | },
1147 | {
1148 | "name": "Jon",
1149 | "image": "",
1150 | "description": "Jon is a parody on the character of the same name from the Garfield comics. He is a character on the Gazorpazorp's TV Show, Gazorpazorpfield.",
1151 | "appearance": [
1152 | "s1e8"
1153 | ],
1154 | "died": "",
1155 | "death_note": ""
1156 | },
1157 | {
1158 | "name": "Man Painted Silver Who Makes Robot Noises",
1159 | "image": "",
1160 | "description": "Man Painted Silver Who Makes Robot Noises is a character who appeared in Rixty Minutes.",
1161 | "appearance": [
1162 | "s1e8"
1163 | ],
1164 | "died": "",
1165 | "death_note": ""
1166 | },
1167 | {
1168 | "name": "Mrs. Sullivan",
1169 | "image": "",
1170 | "description": "Mrs. Sullivan is a characters who appeared in Rixty Minutes.",
1171 | "appearance": [
1172 | "s1e8"
1173 | ],
1174 | "died": "",
1175 | "death_note": ""
1176 | },
1177 | {
1178 | "name": "Piece of Toast",
1179 | "image": "",
1180 | "description": "Piece of Toast is a famous actor from an unspecified dimension.",
1181 | "appearance": [
1182 | "s1e8"
1183 | ],
1184 | "died": "",
1185 | "death_note": ""
1186 | },
1187 | {
1188 | "name": "Real Fake Doors Salesman",
1189 | "image": "",
1190 | "description": "Real Fake Doors Salesman is a character who appeared in Rixty Minutes. He is an interdimensional being who sells fake doors at a company that is all about doors that won't open or lead to anywhere. The commercial then goes to him leaving the studio, getting stuck in traffic, and driving home. He makes a sandwich and reveals that the real fake doors commercial is still going on as he moves to the same room he started at. He then says to call and order real fake doors, then says \"Don't even Hesitate\" \"Don't Even Worry\" \"Don't even... Give it a Second Thought\" \"See it at the bottom of our screen, below our name\" and the other slogan being, \"What are you worried about? come get FAKE DOORS!\" \"Get in here quick, ... Get out Quicker, with an arm of fake doors in your arms.\"",
1191 | "appearance": [
1192 | "s1e8"
1193 | ],
1194 | "died": "",
1195 | "death_note": ""
1196 | },
1197 | {
1198 | "name": "Regular Legs",
1199 | "image": "",
1200 | "description": "Regular Legs is a character who appeared in Rixty Minutes.",
1201 | "appearance": [
1202 | "s1e8"
1203 | ],
1204 | "died": "",
1205 | "death_note": ""
1206 | },
1207 | {
1208 | "name": "Three Unknown Things",
1209 | "image": "",
1210 | "description": "Three Unknown Things are characters that appeared in Rixty Minutes.",
1211 | "appearance": [
1212 | "s1e8"
1213 | ],
1214 | "died": "",
1215 | "death_note": ""
1216 | },
1217 | {
1218 | "name": "Tophat Jones",
1219 | "image": "",
1220 | "description": "Tophat Jones is a breakfast cereal mascot that appears in a commercial for Strawberry Smiggles in the episode \"Rixty Minutes\", and has since then made numerous appearances in Rick and Morty (TV series), along with the Strawberry Smiggles product itself. Jones is a parody of Lucky the Leprechaun, the mascot for Lucky Charms, and the Trix Rabbit, the mascot for Trix Cereal.",
1221 | "appearance": [
1222 | "s1e8"
1223 | ],
1224 | "died": "s1e8",
1225 | "death_note": ""
1226 | },
1227 | {
1228 | "name": "Trunk People",
1229 | "image": "",
1230 | "description": "Trunk People are a synthetic species of human-like creatures that have trunks on their faces. Scientists gave them trunks that allows them to have sex with both male and female partners.",
1231 | "appearance": [
1232 | "s1e8"
1233 | ],
1234 | "died": "",
1235 | "death_note": ""
1236 | },
1237 | {
1238 | "name": "Two Guys with Handlebar Mustaches",
1239 | "image": "",
1240 | "description": "Two Guys with Handlebar Mustaches are characters that appeared in the episode Rixty Minutes.",
1241 | "appearance": [
1242 | "s1e8"
1243 | ],
1244 | "died": "",
1245 | "death_note": ""
1246 | },
1247 | {
1248 | "name": "Unmuscular Michaels",
1249 | "image": "",
1250 | "description": "Unmuscular Michaels are three anorexic men who appeared in a commercial for Turbulent Juice in the episode, \"Rixty Minutes\".",
1251 | "appearance": [
1252 | "s1e8"
1253 | ],
1254 | "died": "",
1255 | "death_note": ""
1256 | },
1257 | {
1258 | "name": "King Flippy Nips",
1259 | "image": "",
1260 | "description": "King Flippy Nips is the ruler of Pluto. He first appeared in 'Something Ricked This Way Comes' as the secondary main antagonist.",
1261 | "appearance": [
1262 | "s1e9"
1263 | ],
1264 | "died": "",
1265 | "death_note": ""
1266 | },
1267 | {
1268 | "name": "Mr. Needful",
1269 | "image": "",
1270 | "description": "Mr. Lucius Needful, (also known as the Devil), is the main antagonist of \"Something Ricked This Way Comes\". Lucius is an eccentric gentleman who runs a vintage antique shop called Needful Things. He hires Summer to help work around the shop, which sells merchandise that curses people.",
1271 | "appearance": [
1272 | "s1e9"
1273 | ],
1274 | "died": "",
1275 | "death_note": ""
1276 | },
1277 | {
1278 | "name": "Scroopy Noopers",
1279 | "image": "",
1280 | "description": "Scroopy Noopers is a scientist and outcast on the celestial dwarf Pluto. He first appeared in Something Ricked This Way Comes.",
1281 | "appearance": [
1282 | "s1e9"
1283 | ],
1284 | "died": "s1e9",
1285 | "death_note": ""
1286 | },
1287 | {
1288 | "name": "Alien Morty",
1289 | "image": "",
1290 | "description": "Alien Morty is an alternate version of Morty Smith who appeared in the episode Close Rick-Counters of the Rick Kind.",
1291 | "appearance": [
1292 | "s1e10",
1293 | "s3e7"
1294 | ],
1295 | "died": "",
1296 | "death_note": ""
1297 | },
1298 | {
1299 | "name": "Alien Rick",
1300 | "image": "",
1301 | "description": "Alien Rick is an alternate version of Rick Sanchez who appeared in the episode Close Rick-Counters of the Rick Kind.",
1302 | "appearance": [
1303 | "s1e10"
1304 | ],
1305 | "died": "",
1306 | "death_note": ""
1307 | },
1308 | {
1309 | "name": "Antenna Morty",
1310 | "image": "",
1311 | "description": "Antenna Morty is an alternate version of Morty who was seen in Close Rick-Counters of the Rick Kind. He was one of the slaves captured by Evil Rick and Evil Morty. He ultimately teamed up with the other Mortys to take down the empire. His dream is \"to write really crazy, intense action novels\".",
1312 | "appearance": [
1313 | "s1e10"
1314 | ],
1315 | "died": "",
1316 | "death_note": ""
1317 | },
1318 | {
1319 | "name": "Antenna Rick",
1320 | "image": "",
1321 | "description": "Antenna Rick is an alternate version of Rick Sanchez who appeared in the episode Close Rick-Counters of the Rick Kind.",
1322 | "appearance": [
1323 | "s1e10"
1324 | ],
1325 | "died": "",
1326 | "death_note": ""
1327 | },
1328 | {
1329 | "name": "Aqua Morty",
1330 | "image": "",
1331 | "description": "Aqua Morty is an alternate version of Morty Smith who first appeared in the episode, \"Close Rick-Counters of the Rick Kind\". He makes a cameo appearance in the Season 3 premiere episode, \"The Rickshank Rickdemption.\"",
1332 | "appearance": [
1333 | "s1e10",
1334 | "s3e1"
1335 | ],
1336 | "died": "",
1337 | "death_note": ""
1338 | },
1339 | {
1340 | "name": "Aqua Rick",
1341 | "image": "",
1342 | "description": "Fish Rick is an alternate version of Rick Sanchez who first appeared in the episode, \"Close Rick-Counters of the Rick Kind\". He makes a cameo appearance in the Season 3 premiere episode, \"The Rickshank Rickdemption.\"",
1343 | "appearance": [
1344 | "s1e10",
1345 | "s3e1",
1346 | "s3e7"
1347 | ],
1348 | "died": "",
1349 | "death_note": ""
1350 | },
1351 | {
1352 | "name": "Artist Morty",
1353 | "image": "",
1354 | "description": "Artist Morty is an alternate version of Morty Smith that appeared in the episode Close Rick-Counters of the Rick Kind. He is a version of Morty who is a French artist who draws sketches in his notebook. His fate is currently unknown as of the events of \"The Rickshank Rickdemption.\" It was revealed that he survived the Citadel collision in the episode, \"The Ricklantis Mixup.\"",
1355 | "appearance": [
1356 | "s1e10"
1357 | ],
1358 | "died": "",
1359 | "death_note": ""
1360 | },
1361 | {
1362 | "name": "Beth Smith (Evil Rick's Target Dimension)",
1363 | "image": "",
1364 | "description": "Beth Smith (n\u00e9e Sanchez) is an alternate version of the original Beth Smith, who appeared in the episode Close Rick-Counters of the Rick Kind.",
1365 | "appearance": [
1366 | "s1e10"
1367 | ],
1368 | "died": "",
1369 | "death_note": ""
1370 | },
1371 | {
1372 | "name": "Blue Shirt Morty",
1373 | "image": "",
1374 | "description": "Blue Shirt Morty is an alternate version of a different timeline of Morty Smith. He appears in Season 1, Episode 10, Close Rick-Counters of the Rick Kind. He is paired with Yellow Shirt Rick. He also appears in Pocket Mortys, despite Yellow Shirt Rick's absence. His fate is currently unknown as he was never seen in The Rickshank Rickdemption during the battle between the Council Of Rick's and the Galactic Federation.",
1375 | "appearance": [
1376 | "s1e10"
1377 | ],
1378 | "died": "",
1379 | "death_note": ""
1380 | },
1381 | {
1382 | "name": "Council of Ricks",
1383 | "image": "",
1384 | "description": "Council of Ricks was the governing body over all Ricks within reality. The Council was created when Ricks from multiple dimensions decided to form a way for Ricks to protect one another from their enemies across realities and ruled from their secret headquarters called the Citadel of Ricks.",
1385 | "appearance": [
1386 | "s1e10",
1387 | "s1e11",
1388 | "s3e1"
1389 | ],
1390 | "died": "",
1391 | "death_note": ""
1392 | },
1393 | {
1394 | "name": "Cowboy Morty",
1395 | "image": "",
1396 | "description": "Cowboy Morty is a Morty appearing in Close Rick-Counters of the Rick Kind along with Cowboy Rick. Morty became distracted when he saw himself as a cowboy, but Rick dismissed it, saying Morty was easily impressed.",
1397 | "appearance": [
1398 | "s1e10",
1399 | "s3e7"
1400 | ],
1401 | "died": "",
1402 | "death_note": ""
1403 | },
1404 | {
1405 | "name": "Cowboy Rick",
1406 | "image": "",
1407 | "description": "Cowboy Rick is a Rick appearing in Close Rick-Counters of the Rick Kind along with Cowboy Morty.",
1408 | "appearance": [
1409 | "s1e10",
1410 | "s3e7"
1411 | ],
1412 | "died": "",
1413 | "death_note": ""
1414 | },
1415 | {
1416 | "name": "Cult Leader Morty",
1417 | "image": "",
1418 | "description": "Cult Leader Morty is a character that appeared in the episode Close Rick-Counters of the Rick Kind. He is the leader of a cult of Mortys that are trapped in the dungeon of Evil Rick torture chamber, and he awaits the arrival of a holy deity to come and save him.",
1419 | "appearance": [
1420 | "s1e10"
1421 | ],
1422 | "died": "",
1423 | "death_note": ""
1424 | },
1425 | {
1426 | "name": "Cyclops Morty",
1427 | "image": "",
1428 | "description": "Cyclops Morty is an alternate version of Morty Smith that was seen in the episode Close Rick-Counters of the Rick Kind. He is a cyclops version of Morty.",
1429 | "appearance": [
1430 | "s1e10",
1431 | "s3e7"
1432 | ],
1433 | "died": "",
1434 | "death_note": ""
1435 | },
1436 | {
1437 | "name": "Cyclops Rick",
1438 | "image": "",
1439 | "description": "Cyclops Rick is one of the alternate versions of Rick Sanchez who appeared in the episode Close Rick-Counters of the Rick Kind. He is a one-eyed monster version of Rick. He reappears in the episode, \"The Rickshank Rickdemption.\"",
1440 | "appearance": [
1441 | "s1e10",
1442 | "s3e1",
1443 | "s3e7"
1444 | ],
1445 | "died": "s3e7",
1446 | "death_note": ""
1447 | },
1448 | {
1449 | "name": "Doofus Rick",
1450 | "image": "",
1451 | "description": "Rick Sanchez of Dimension J19\u03b67, commonly known as Doofus Rick, is the least respected of all the Ricks. He first appeared in the episode \"Close Rick-counters of the Rick Kind.\" According to other Ricks, Doofus Rick comes from a dimension where people eat their own feces; however, this is most likely false according to what Justin Roiland said on the Blu-ray\/DVD commentary track for \"Close Rick-counters of the Rick Kind\".",
1452 | "appearance": [
1453 | "s1e10"
1454 | ],
1455 | "died": "",
1456 | "death_note": ""
1457 | },
1458 | {
1459 | "name": "Eric Stoltz Mask Morty",
1460 | "image": "",
1461 | "description": "Eric Stoltz Mask Morty is an alternate version of Morty Smith who originates from a reality where everyone is Eric Stoltz Mask people. He was assigned to be Doofus Rick's Morty since Doofus Rick never had any kids of his own. He appeared in \"Close Rick-Counters of the Rick Kind\" playing cards with other Mortys.",
1462 | "appearance": [
1463 | "s1e10"
1464 | ],
1465 | "died": "",
1466 | "death_note": ""
1467 | },
1468 | {
1469 | "name": "Evil Morty",
1470 | "image": "",
1471 | "description": "Evil Morty is one of infinitely many versions of Morty, who is currently serving as the President of the Citadel of Ricks. He first appeared in \"Close Rick-Counters of the Rick Kind\", as the hidden true main antagonist, and was last seen being rounded up with the other Rickless Mortys.",
1472 | "appearance": [
1473 | "s1e10",
1474 | "s3e7"
1475 | ],
1476 | "died": "",
1477 | "death_note": ""
1478 | },
1479 | {
1480 | "name": "Evil Rick",
1481 | "image": "",
1482 | "description": "Evil Rick appeared only in Close Rick-Counters of the Rick Kind as the secondary antagonist. Evil Rick was vastly different from C-137 Rick. After his death, Ricks from the Council of the Ricks opened his head, revealing sophisticated robotics which lead them to believe that he was being remotely controlled. Unbeknownst to them, he was under the control of Evil Morty. Evil Morty had been killing Ricks to accumulate Mortys. Evil Morty had been torturing the Mortys through this Rick, creating thousands of Mortys that were filled with hatred towards the Ricks. However, when this Rick was killed by the Mortys, his plan became moot. It is revealed in the end that his actions had been controlled by a receiver, with the transmitter being inside Evil Morty's eyepatch.",
1483 | "appearance": [
1484 | "s1e10"
1485 | ],
1486 | "died": "s1e10",
1487 | "death_note": ""
1488 | },
1489 | {
1490 | "name": "Hammerhead Morty",
1491 | "image": "",
1492 | "description": "Hammerhead Morty is one of the alternate dimension versions of Morty Smith who, with the other Mortys, rebelled against Evil Rick. He first appeared in the episode \"Close Rick-Counters of the Rick Kind\". He appeared again, and was gravely injured, possibly fatally, in \"The Rickshank Rickdemption\", when a guard for the Council of Ricks used him as a weapon and a meat shield.",
1493 | "appearance": [
1494 | "s1e10",
1495 | "s3e1"
1496 | ],
1497 | "died": "",
1498 | "death_note": ""
1499 | },
1500 | {
1501 | "name": "Jerry Smith (Evil Rick's Target Dimension)",
1502 | "image": "",
1503 | "description": "Jerry Smith is an alternate version of the original Jerry Smith, who appeared in the episode Close Rick-Counters of the Rick Kind.",
1504 | "appearance": [
1505 | "s1e10"
1506 | ],
1507 | "died": "",
1508 | "death_note": ""
1509 | },
1510 | {
1511 | "name": "Long Sleeved Morty",
1512 | "image": "",
1513 | "description": "Long Sleeved Morty is an alternate version of Morty Smith who appeared in the episode Close Rick-Counters of the Rick Kind.",
1514 | "appearance": [
1515 | "s1e10"
1516 | ],
1517 | "died": "",
1518 | "death_note": ""
1519 | },
1520 | {
1521 | "name": "Maximums Rickimus",
1522 | "image": "",
1523 | "description": "Maximums Rickimus was one of the members of the now defunct Council of Ricks. He was killed by Rick Sanchez in \"The Rickshank Rickdemption.\"",
1524 | "appearance": [
1525 | "s1e10",
1526 | "s3e1"
1527 | ],
1528 | "died": "s3e1",
1529 | "death_note": ""
1530 | },
1531 | {
1532 | "name": "Morty Smith (Evil Rick's Target Dimension)",
1533 | "image": "",
1534 | "description": "Morty Smith is an alternate version of the original Morty Smith, that appeared in the episode Close Rick-Counters of the Rick Kind. He and his Rick Sanchez (Evil Rick's Target Dimension) were the victims of Evil Rick and Evil Morty.",
1535 | "appearance": [
1536 | "s1e10"
1537 | ],
1538 | "died": "",
1539 | "death_note": ""
1540 | },
1541 | {
1542 | "name": "Quantum Rick",
1543 | "image": "",
1544 | "description": "Quantum Rick is one of the members of the former Council of Ricks and perhaps its only surviving member. His body was possibly taken over by Rick Sanchez in \"The Rickshank Rickdemption\" in order for him to fool the other council members and assassinate them; however, as the modified [http:\/\/rickandmorty.wikia.com\/wiki\/Series_9000_Brainalyzer brainalyzer] that Rick C-137 used to take over other Rick's bodies may have been destroyed before he encountered Quantum Rick, then the possibility that Quantum Rick escaped into exile or was assassinated by Rick C-137 (while occupying [http:\/\/rickandmorty.wikia.com\/wiki\/Commander_Rick Commander in Chief Rick's] body) whom then took the guise of Quantum Rick to deceive the rest of the Council is plausible.",
1545 | "appearance": [
1546 | "s1e10",
1547 | "s3e1"
1548 | ],
1549 | "died": "s3e1",
1550 | "death_note": ""
1551 | },
1552 | {
1553 | "name": "Rick Prime",
1554 | "image": "",
1555 | "description": "Rick Prime was one of the members of the now defunct Council of Ricks. He was killed by Rick Sanchez in \"The Rickshank Rickdemption.\"",
1556 | "appearance": [
1557 | "s1e10",
1558 | "s3e1"
1559 | ],
1560 | "died": "s3e1",
1561 | "death_note": ""
1562 | },
1563 | {
1564 | "name": "Rick Sanchez (Evil Rick's Target Dimension)",
1565 | "image": "",
1566 | "description": "Rick Sanchez is an alternate version of the original Rick Sanchez, that appeared in the episode Close Rick-Counters of the Rick Kind. He and his Morty Smith (Evil Rick's Target Dimension) were the victims of Evil Rick and Evil Morty.",
1567 | "appearance": [
1568 | "s1e10"
1569 | ],
1570 | "died": "s1e10",
1571 | "death_note": ""
1572 | },
1573 | {
1574 | "name": "Ricktiminus Sancheziminius",
1575 | "image": "",
1576 | "description": "Ricktiminus Sancheziminius was a member of the now defunct Council of Ricks. He was killed by Rick Sanchez in \"The Rickshank Rickdemption\".",
1577 | "appearance": [
1578 | "s1e10",
1579 | "s3e1"
1580 | ],
1581 | "died": "s3e1",
1582 | "death_note": ""
1583 | },
1584 | {
1585 | "name": "Riq IV",
1586 | "image": "",
1587 | "description": "Riq IV was the spokesperson for the now defunct Council of Ricks. He first appeared in the episode \"Close Rick-Counters of the Rick Kind\". He also appears during the party in \"Ricksy Business\", though only in the background. He plays a primary role as the final boss in the Rick and Morty video game, Pocket Mortys. He was killed by Rick Sanchez in the Season 3 premiere episode, \"The Rickshank Rickdemption\", as a result of a standoff involving Summer Smith and Morty Smith. He also likes to overpronounce his T's because he's a pimp.",
1588 | "appearance": [
1589 | "s1e10",
1590 | "s3e1"
1591 | ],
1592 | "died": "s3e1",
1593 | "death_note": ""
1594 | },
1595 | {
1596 | "name": "Robot Morty",
1597 | "image": "",
1598 | "description": "Robot Morty is an alternate version of Morty Smith who appeared in the episode Close Rick-Counters of the Rick Kind. He is a robotic version of Morty who is dressed up to look like him.",
1599 | "appearance": [
1600 | "s1e10"
1601 | ],
1602 | "died": "",
1603 | "death_note": ""
1604 | },
1605 | {
1606 | "name": "Robot Rick",
1607 | "image": "",
1608 | "description": "Robot Rick is an alternate version of Rick Sanchez that appeared in the episode \"Close Rick-Counters of the Rick Kind.\" He is a robot that resembles Rick.",
1609 | "appearance": [
1610 | "s1e10"
1611 | ],
1612 | "died": "",
1613 | "death_note": ""
1614 | },
1615 | {
1616 | "name": "Solicitor Rick",
1617 | "image": "",
1618 | "description": "Solicitor Rick is a version of Rick Sanchez who first appeared in the episode \"Close Rick-Counters of the Rick Kind.\" He attempted to sell Morty dazzlers to Rick, who was on his way to a trial, but to no avail. He was at the Citadel during the events of \"The Rickshank Rickdemption.\"",
1619 | "appearance": [
1620 | "s1e10"
1621 | ],
1622 | "died": "",
1623 | "death_note": ""
1624 | },
1625 | {
1626 | "name": "Summer Smith (Evil Rick's Target Dimension)",
1627 | "image": "",
1628 | "description": "Summer Smith is an alternate version of the original Summer Smith, that appeared in the episode Close Rick-Counters of the Rick Kind.",
1629 | "appearance": [
1630 | "s1e10"
1631 | ],
1632 | "died": "",
1633 | "death_note": ""
1634 | },
1635 | {
1636 | "name": "The Scientist Formerly Known as Rick",
1637 | "image": "",
1638 | "description": " first appeared in Close Rick-Counters of the Rick Kind as a variation of Rick who denounced the name Rick. He was against the Council of Ricks as noted by Rick Sanchez. He was killed by Evil Rick.",
1639 | "appearance": [
1640 | "s1e10"
1641 | ],
1642 | "died": "",
1643 | "death_note": ""
1644 | },
1645 | {
1646 | "name": "Tortured Mortys",
1647 | "image": "",
1648 | "description": "Tortured Mortys are a large number of Mortys that were being held in Evil Rick torture chamber. They appeared in Close Rick-Counters of the Rick Kind. When Morty Smith rescued Rick, he pressed a button releasing the Tortured Mortys from their confines. At the end of the episode, they were shown alongside the other Mortys being sent back to their original homes.",
1649 | "appearance": [
1650 | "s1e10"
1651 | ],
1652 | "died": "",
1653 | "death_note": ""
1654 | },
1655 | {
1656 | "name": "Toy Morty",
1657 | "image": "",
1658 | "description": "Toy Morty is a doll version of Morty Smith that appeared in the episode Close Rick-Counters of the Rick Kind.",
1659 | "appearance": [
1660 | "s1e10"
1661 | ],
1662 | "died": "",
1663 | "death_note": ""
1664 | },
1665 | {
1666 | "name": "Yellow Shirt Rick",
1667 | "image": "",
1668 | "description": "Yellow Shirt Rick is a Rick that appeared in the episode Close Rick-Counters of the Rick Kind. He is paired with Blue Shirt Morty. He and Blue Shirt Morty are similar to the originals from Dimension C-137, only the colors of their shirts are swapped.",
1669 | "appearance": [
1670 | "s1e10"
1671 | ],
1672 | "died": "",
1673 | "death_note": ""
1674 | },
1675 | {
1676 | "name": "Zeta Alpha Rick",
1677 | "image": "",
1678 | "description": "Zeta Alpha Rick was a member of the now defunct Council of Ricks. He was killed by Rick Sanchez in \"The Rickshank Rickdemption.\"",
1679 | "appearance": [
1680 | "s1e10",
1681 | "s3e1"
1682 | ],
1683 | "died": "s3e1",
1684 | "death_note": ""
1685 | },
1686 | {
1687 | "name": "Abradolf Lincler",
1688 | "image": "",
1689 | "description": "Abradolf Lincler is a humanoid experiment debuting in Ricksy Business. He was created when Rick combined the DNA of wikipedia:Abraham Lincoln and wikipedia:Adolf Hitler, in an attempt to create a morally neutral super leader. He failed and the end result was a cognitively dissonant and morally-confused emotional trainwreck.",
1690 | "appearance": [
1691 | "s1e11"
1692 | ],
1693 | "died": "",
1694 | "death_note": ""
1695 | },
1696 | {
1697 | "name": "Birdperson",
1698 | "image": "",
1699 | "description": "Birdperson, currently known as Phoenixperson, is a recurring character in Rick and Morty (TV series). He is an old friend of Rick Sanchez's and has seemingly known Morty Smith since he was a baby. He attends Rick's party looking for a new mate after ending his soul-bond with his previous spirit-partner. At the end of the episode, he gets back in the saddle with one of Summer Smith's high school friends, Tammy Gueterman.",
1700 | "appearance": [
1701 | "s1e11",
1702 | "s2e5",
1703 | "s2e10",
1704 | "s3e1",
1705 | "s3e5"
1706 | ],
1707 | "died": "s2e10",
1708 | "death_note": ""
1709 | },
1710 | {
1711 | "name": "Greebybobes",
1712 | "image": "",
1713 | "description": "Greebybobes are a deceased alien species that lived on the Planet Parblesnops. They appeared frequently as background characters throughout the series before their gruesome extinction by Cromulons in the episode Get Schwifty.",
1714 | "appearance": [
1715 | "s1e11",
1716 | "s2e5"
1717 | ],
1718 | "died": "s2e5",
1719 | "death_note": ""
1720 | },
1721 | {
1722 | "name": "Lucy",
1723 | "image": "",
1724 | "description": "Lucy is a character who appeared in the episode \"Ricksy Business\", serving as the main antagonist. She worked as a maid on the Titanic 2. While coming off as a sweet lady, she eventually becomes obsessed with Jerry; attempting to force him to have sex with her at gunpoint.",
1725 | "appearance": [
1726 | "s1e11"
1727 | ],
1728 | "died": "s1e11",
1729 | "death_note": ""
1730 | },
1731 | {
1732 | "name": "Plutonian",
1733 | "image": "",
1734 | "description": "Plutonians are the people of Pluto. Their first notable appearance is in Something Ricked This Way Comes. However, they appear multiple times in M. Night Shaym-Aliens!, presumably as test subjects for the Zigerion simulations.",
1735 | "appearance": [
1736 | "s1e11"
1737 | ],
1738 | "died": "",
1739 | "death_note": ""
1740 | },
1741 | {
1742 | "name": "Pripudlians",
1743 | "image": "",
1744 | "description": "Pripudlians are a pink, worm-like alien race that exist in the world of Rick and Morty. They appear in a lot of intergalactic places, but do not seem to make much commotion about themselves, or travel in groups. Like most other aliens, Pripudlians don't wear pants.",
1745 | "appearance": [
1746 | "s1e11"
1747 | ],
1748 | "died": "",
1749 | "death_note": ""
1750 | },
1751 | {
1752 | "name": "Revolio Clockberg Jr.",
1753 | "image": "",
1754 | "description": "Revolio Clockberg Jr., more commonly referred to as Gearhead, is a recurring character who first appeared in the episode \"Ricksy Business\". His character is a representative of \"social gearheads\", people who know a lot of technical information about gears. In Gearhead's case, it's information about the Gear Wars and engineering. He is a guest at Rick and Summer's party and can play an instrument similar to a Wikipedia:lute. ",
1755 | "appearance": [
1756 | "s1e11",
1757 | "s2e2",
1758 | "s3e4"
1759 | ],
1760 | "died": "",
1761 | "death_note": ""
1762 | },
1763 | {
1764 | "name": "Scropon",
1765 | "image": "",
1766 | "description": "Scropon is an alien friend of Rick Sanchez. He first appeared in the episode Ricksy Business.",
1767 | "appearance": [
1768 | "s1e11",
1769 | "s2e10"
1770 | ],
1771 | "died": "",
1772 | "death_note": ""
1773 | },
1774 | {
1775 | "name": "Slippery Stair",
1776 | "image": "",
1777 | "description": "Slippery Stair<nowiki\/> is a character that appears in the episode Meeseeks and Destroy.",
1778 | "appearance": [
1779 | "s1e11"
1780 | ],
1781 | "died": "",
1782 | "death_note": ""
1783 | },
1784 | {
1785 | "name": "Slow Mobius",
1786 | "image": "",
1787 | "description": "Slow Mobius is an non-human friend of Rick Sanchez that appeared in the episode \"Ricksy Business\". He is a time lord that has the ability to slow down time with a pair of giant clock-headed time wands. He is voiced by Chris Romano.",
1788 | "appearance": [
1789 | "s1e11"
1790 | ],
1791 | "died": "",
1792 | "death_note": ""
1793 | },
1794 | {
1795 | "name": "Squanchy",
1796 | "image": "",
1797 | "description": "Squanchy is a cat-like anthropomorphic creature that was invited to Rick and Summer's party in \"Ricksy Business\". He is a recurring character in Rick and Morty (TV series), and very good friends with Rick, sharing his love for alcohol. Morty and Jessica catch Squanchy engaging in wikipedia:Erotic asphyxiation masturbation in Morty's garage. He refers to this as \"squanching\".",
1798 | "appearance": [
1799 | "s1e11",
1800 | "s2e5",
1801 | "s2e10"
1802 | ],
1803 | "died": "",
1804 | "death_note": ""
1805 | },
1806 | {
1807 | "name": "Stair Goblins",
1808 | "image": "",
1809 | "description": "Stair Goblins are a race of stair creatures from the Fantasy World dimension who first appeared in the episode \"Meeseeks and Destroy\". They were seen in the Thirsty Step tavern and they were known to be moody.",
1810 | "appearance": [
1811 | "s1e11",
1812 | "s3e4"
1813 | ],
1814 | "died": "",
1815 | "death_note": ""
1816 | },
1817 | {
1818 | "name": "Testicle Monster",
1819 | "image": "",
1820 | "description": "Testicle monsters appear in Ricksy Business and appear to enjoy indulging in sexual acts with other beings as sex toys.",
1821 | "appearance": [
1822 | "s1e11"
1823 | ],
1824 | "died": "",
1825 | "death_note": ""
1826 | },
1827 | {
1828 | "name": "Traflorkians",
1829 | "image": "",
1830 | "description": "Traflorkians are a species of small green aliens. They first appeared in Ricksy Business after Rick invites them to his party. And have since then, made several cameo appearances in further episodes.",
1831 | "appearance": [
1832 | "s1e11"
1833 | ],
1834 | "died": "",
1835 | "death_note": ""
1836 | },
1837 | {
1838 | "name": "Albert Einstein",
1839 | "image": "",
1840 | "description": "Albert Einstein was a scientist who invented the theory of relativity. He appeared in the Rick and Morty episode A Rickle in Time.",
1841 | "appearance": [
1842 | "s2e1"
1843 | ],
1844 | "died": "",
1845 | "death_note": ""
1846 | },
1847 | {
1848 | "name": "Chris",
1849 | "image": "",
1850 | "description": "Chris is an alien weapon that was used by Shleemypants in the episode A Rickle in Time. He is a live, slug-like alien that is used as a weapon and considered the equivalent of a gun to Shleemypants.",
1851 | "appearance": [
1852 | "s2e1"
1853 | ],
1854 | "died": "s2e1",
1855 | "death_note": ""
1856 | },
1857 | {
1858 | "name": "Shleemypants",
1859 | "image": "",
1860 | "description": "Shleemypants is an immortal and omniscient alien with the ability to Time Travel, who appeared in the episode A Rickle in Time. He is an alien who works as an multidimensional police officer, keeping the multiverse safe from all benders of space time. He confronted Rick when the latter built a machine that unintentionally split time into multiple different clones of itself. His weapon of choice is a live, slug-like creature named Chris.",
1861 | "appearance": [
1862 | "s2e1"
1863 | ],
1864 | "died": "",
1865 | "death_note": ""
1866 | },
1867 | {
1868 | "name": "Fart",
1869 | "image": "",
1870 | "description": "Fart is a gaseous being who appeared in the episode \"Mortynight Run\". Although technically nameless, it took on the name \"Fart\" for convenience after Rick insulted it. It communicates through telepathy.",
1871 | "appearance": [
1872 | "s2e2"
1873 | ],
1874 | "died": "s2e2",
1875 | "death_note": ""
1876 | },
1877 | {
1878 | "name": "Krombopulos Michael",
1879 | "image": "",
1880 | "description": "Krombopulos Michael was a Gromflomites assassin that purchased weapons from Rick Sanchez. Rick refers to him as his best customer. His final purchase was an Wikipedia:anti-matter handgun, to be used to kill Fart, a gaseous target that couldn't be destroyed with normal weapons. When he meets Rick at a Shady Garage to purchase the gun, Krombopulos introduces himself to Morty, giving him a business card and saying the quote above. ",
1881 | "appearance": [
1882 | "s2e2"
1883 | ],
1884 | "died": "s2e2",
1885 | "death_note": ""
1886 | },
1887 | {
1888 | "name": "Paul Fleishman",
1889 | "image": "",
1890 | "description": "Paul Fleischmann is a man that appeared in the episode Mortynight Run At Jerryboree. He comes from an alternate timeline, where Jerry Smith and Beth divorced and Beth got remarried to him.",
1891 | "appearance": [
1892 | "s2e2"
1893 | ],
1894 | "died": "",
1895 | "death_note": ""
1896 | },
1897 | {
1898 | "name": "Roy",
1899 | "image": "",
1900 | "description": "",
1901 | "appearance": [
1902 | "s2e2"
1903 | ],
1904 | "died": "",
1905 | "death_note": ""
1906 | },
1907 | {
1908 | "name": "Beta-Seven",
1909 | "image": "",
1910 | "description": "Beta-Seven is a hive-mind who has a planet near Unity's Planet and trades with Unity as part of an alliance. Beta-Seven seems to want be seen as more than an \"ally\" to Unity; when Beta-Seven first meets Rick, it appears to be jealous of his relationship with Unity, giving tsundere-like performance of stammering when Unity confronts it about screeching at Rick.",
1911 | "appearance": [
1912 | "s2e3"
1913 | ],
1914 | "died": "",
1915 | "death_note": ""
1916 | },
1917 | {
1918 | "name": "Blim Blam",
1919 | "image": "",
1920 | "description": "Blim Blam is a Korblocks murderer who eats babies, and apparently traveled to Earth to do so. He was eventually captured and chained up by Rick in an attempt to cure Blim Blam's \"space AIDS\" in order to become rich selling the cure. He was discovered by Beth and Jerry, however, and the two's bickering annoyed Blim Blam to the point that he broke free, berated the two by using a translation device Rick had (as he could only speak in alien beforehand), and then left promising never to return to Earth.",
1921 | "appearance": [
1922 | "s2e3"
1923 | ],
1924 | "died": "",
1925 | "death_note": ""
1926 | },
1927 | {
1928 | "name": "Unity",
1929 | "image": "",
1930 | "description": "Unity is a collective hivemind and Rick Sanchez's former lover. It is a powerful entity that can control minds, and form alliances. It takes the forms of multiple genders, races, and likely species, but uses both male and female avatars, including around Rick. Unity first appeared in \"Auto Erotic Assimilation\", where it briefly gets back together with Rick, only for them to separate again at the end of the episode.",
1931 | "appearance": [
1932 | "s2e3"
1933 | ],
1934 | "died": "",
1935 | "death_note": ""
1936 | },
1937 | {
1938 | "name": "Amish Cyborg",
1939 | "image": "",
1940 | "description": "Amish Cyborg was the only character besides the family, and [http:\/\/rickandmorty.wikia.com\/wiki\/Mr._Poopybutthole Mr. Poopybutthole], that wasn't a parasite in his episode. This is proven by the fact that when he was shot, he never transformed into a parasite. He appeared in the episode Total Rickall. He was shot and killed by Rick while fleeing from him in the kitchen.",
1941 | "appearance": [
1942 | "s2e4"
1943 | ],
1944 | "died": "s2e4",
1945 | "death_note": ""
1946 | },
1947 | {
1948 | "name": "Baby Wizard",
1949 | "image": "",
1950 | "description": "Baby Wizard is a minor character that appears in the episode Total Rickall. Like many of the other characters within the episode, he is a persona of the Alien Parasites.",
1951 | "appearance": [
1952 | "s2e4"
1953 | ],
1954 | "died": "s2e4",
1955 | "death_note": ""
1956 | },
1957 | {
1958 | "name": "Cousin Nicky",
1959 | "image": "",
1960 | "description": "Cousin Nicky was a minor character that appears in the episode Total Rickall.",
1961 | "appearance": [
1962 | "s2e4"
1963 | ],
1964 | "died": "s2e4",
1965 | "death_note": ""
1966 | },
1967 | {
1968 | "name": "Duck With Muscles",
1969 | "image": "",
1970 | "description": "Duck With Muscles is an unnamed false character from the episode Total Rickall.",
1971 | "appearance": [
1972 | "s2e4"
1973 | ],
1974 | "died": "s2e4",
1975 | "death_note": ""
1976 | },
1977 | {
1978 | "name": "Frankenstein's Monster",
1979 | "image": "",
1980 | "description": "Frankenstein's Monster was a false character, portrayed by the Alien Parasites. He is a variation of the monster from Wikipedia:Frankenstein and is passed off as a member of the Smith family.",
1981 | "appearance": [
1982 | "s2e4"
1983 | ],
1984 | "died": "s2e4",
1985 | "death_note": ""
1986 | },
1987 | {
1988 | "name": "Ghost in a Jar",
1989 | "image": "",
1990 | "description": "Ghost in a Jar was a false character, portrayed by the Alien Parasites. He is a tiny green ghost, inside of a jar. He appeared in the episode Total Rickall.",
1991 | "appearance": [
1992 | "s2e4"
1993 | ],
1994 | "died": "s2e4",
1995 | "death_note": ""
1996 | },
1997 | {
1998 | "name": "Hamurai",
1999 | "image": "",
2000 | "description": "Hamurai was a false character, portrayed by the Alien Parasites. He was mentioned to have gone to college with Reverse Giraffe. He is voiced by Kevin Michael Richardson.",
2001 | "appearance": [
2002 | "s2e4"
2003 | ],
2004 | "died": "s2e4",
2005 | "death_note": ""
2006 | },
2007 | {
2008 | "name": "Mr. Beauregard",
2009 | "image": "",
2010 | "description": "Mr. Beauregard is a minor character that appears in the episode Total Rickall.",
2011 | "appearance": [
2012 | "s2e4"
2013 | ],
2014 | "died": "s2e4",
2015 | "death_note": ""
2016 | },
2017 | {
2018 | "name": "Mr. Poopybutthole",
2019 | "image": "",
2020 | "description": "Mr. Poopybutthole is a long-time family friend of the Smith Family. Rick Sanchez clearly considers him to have long been a dependable person, although it's uncertain how long they've known each other. He made his first appearance in the episode Total Rickall. He is voiced by Justin Roiland.",
2021 | "appearance": [
2022 | "s2e4",
2023 | "s2e10",
2024 | "s3e8",
2025 | "s3e9",
2026 | "s3e10"
2027 | ],
2028 | "died": "",
2029 | "death_note": ""
2030 | },
2031 | {
2032 | "name": "Mrs. Refrigerator",
2033 | "image": "",
2034 | "description": "Mrs. Refrigerator was a false character, portrayed by the Alien Parasites. She appeared in the episode Total Rickall.",
2035 | "appearance": [
2036 | "s2e4"
2037 | ],
2038 | "died": "s2e4",
2039 | "death_note": ""
2040 | },
2041 | {
2042 | "name": "Pencilvester",
2043 | "image": "",
2044 | "description": "Pencilvester is a false character, portrayed by the Alien Parasites in the episode Total Rickall.",
2045 | "appearance": [
2046 | "s2e4"
2047 | ],
2048 | "died": "s2e4",
2049 | "death_note": ""
2050 | },
2051 | {
2052 | "name": "Photography Raptor",
2053 | "image": "",
2054 | "description": "Photography Raptor was a false character portrayed by the Alien Parasites as seen in \"Total Rickall.\"",
2055 | "appearance": [
2056 | "s2e4"
2057 | ],
2058 | "died": "s2e4",
2059 | "death_note": ""
2060 | },
2061 | {
2062 | "name": "Reverse Giraffe",
2063 | "image": "",
2064 | "description": "Reverse Giraffe is a false character portrayed by the shape-shifting Alien Parasites.",
2065 | "appearance": [
2066 | "s2e4"
2067 | ],
2068 | "died": "s2e4",
2069 | "death_note": ""
2070 | },
2071 | {
2072 | "name": "Sleepy Gary",
2073 | "image": "",
2074 | "description": "Sleepy Gary was a false character created by the Alien Parasites who invaded the Smith Residence. He passes himself off as a member of the immediate family, as well as Jerry Smith secret lover.",
2075 | "appearance": [
2076 | "s2e4"
2077 | ],
2078 | "died": "s2e4",
2079 | "death_note": ""
2080 | },
2081 | {
2082 | "name": "Tinkles",
2083 | "image": "",
2084 | "description": "Tinkles is a false character, portrayed by an Alien Parasites. Tinkles is supposed to be a magical ballerina lamb who is Summer imaginary friend who takes her to a magical world called Never Past Bedtime Land. Summer is the only one who can see her and no one else believes that she's real. She was shot by Summer during an attempt to convince Summer not to shoot her.",
2085 | "appearance": [
2086 | "s2e4"
2087 | ],
2088 | "died": "s2e4",
2089 | "death_note": ""
2090 | },
2091 | {
2092 | "name": "Uncle Steve",
2093 | "image": "",
2094 | "description": "Uncle Steve is a minor character that appears in the episode Total Rickall.",
2095 | "appearance": [
2096 | "s2e4"
2097 | ],
2098 | "died": "s2e4",
2099 | "death_note": ""
2100 | },
2101 | {
2102 | "name": "Cromulons",
2103 | "image": "",
2104 | "description": "Cromulons are a species of planet-sized beings shaped as giant human heads, and are native to the Cromulon Dimension. They are encountered in the episode Get Schwifty, where they are the primary antagonist.",
2105 | "appearance": [
2106 | "s2e5"
2107 | ],
2108 | "died": "",
2109 | "death_note": ""
2110 | },
2111 | {
2112 | "name": "Father Bob",
2113 | "image": "",
2114 | "description": "Father Bob is the priest at the town Church. He appeared in the episodes \"Get Schwifty\" and \"Rest and Ricklaxation\". In \"Get Schwifty\", he was giving a sermon to everyone in the city, helping them cope with the Cromulons head, confronting the Earth.",
2115 | "appearance": [
2116 | "s2e5",
2117 | "s3e6"
2118 | ],
2119 | "died": "",
2120 | "death_note": ""
2121 | },
2122 | {
2123 | "name": "General Nathan",
2124 | "image": "",
2125 | "description": "General Nathan was an American army general who appeared in the episode Get Schwifty as the main antagonist. He wanted to destroy the Cromulons with nuclear weapons, but the President disagreed. He rebelled against the President and knocked him out, only for his plan to destroy them to fail. He is zapped by Rick Sanchez's particle beam wristwatch when he attempts to murder the President, and therefore killed.",
2126 | "appearance": [
2127 | "s2e5"
2128 | ],
2129 | "died": "s2e5",
2130 | "death_note": ""
2131 | },
2132 | {
2133 | "name": "Hydrogen-F",
2134 | "image": "",
2135 | "description": "Hydrogen-F is an Alphabetrian who is a letter F made out of hydrogen. She is a royal figure of the Alphaetrian empire and she helped to grant Ice-T with his original form, as a reward for saving the Earth from the Cromulons.",
2136 | "appearance": [
2137 | "s2e5"
2138 | ],
2139 | "died": "",
2140 | "death_note": ""
2141 | },
2142 | {
2143 | "name": "Ice-T",
2144 | "image": "",
2145 | "description": "Ice-T (also known as Tracy Lauren Marrow), is a well-known human rapper on Earth, who is actually an ageless wandering alien from the dawn of time known as Water-T.",
2146 | "appearance": [
2147 | "s2e5"
2148 | ],
2149 | "died": "",
2150 | "death_note": ""
2151 | },
2152 | {
2153 | "name": "Jamey",
2154 | "image": "",
2155 | "description": "Jamey is a military flight attendant that appeared in the episode Get Schwifty. He helped Rick and Morty out of the helicopter and to their performance for the Cromulons at the sonic testing facility in [https:\/\/en.wikipedia.org\/wiki\/Area_51 Area 51].",
2156 | "appearance": [
2157 | "s2e5"
2158 | ],
2159 | "died": "",
2160 | "death_note": ""
2161 | },
2162 | {
2163 | "name": "Jew",
2164 | "image": "",
2165 | "description": "Jew is an unnamed Orthodox Jewish man who appeared in the episode Get Schwifty. He attended the Christian Church when the world was under the attack of Armagheadon.",
2166 | "appearance": [
2167 | "s2e5"
2168 | ],
2169 | "died": "",
2170 | "death_note": ""
2171 | },
2172 | {
2173 | "name": "Jim",
2174 | "image": "",
2175 | "description": "Jim is a news presenter for an unknown news network. He was the acting news presenter when they aired an emergency news on the Cromulons in the sky. He was talking with Terry at the scene and told him not to make the story political after Terry commented on climate changes being made by the giant head. Jim asked Terry what the giant head wanted, right before the Cromulon said \"Show me what you got!\", and creating even more destruction.",
2176 | "appearance": [
2177 | "s2e5"
2178 | ],
2179 | "died": "",
2180 | "death_note": ""
2181 | },
2182 | {
2183 | "name": "Magma-Q",
2184 | "image": "",
2185 | "description": "Magma-Q is an elder of Alphabetrium and the father of Ice-T. ",
2186 | "appearance": [
2187 | "s2e5"
2188 | ],
2189 | "died": "s2e5",
2190 | "death_note": ""
2191 | },
2192 | {
2193 | "name": "Magnesium-J",
2194 | "image": "",
2195 | "description": "Magnesium-J is an Alphabetrian being that appeared in the episode \"Get Schwifty\". He is a royal figure of a castle on a planet where everyone is letters made out of a mineral or element of some sort. When Ice T returned home, he rewarded him by granting him his original form again.",
2196 | "appearance": [
2197 | "s2e5"
2198 | ],
2199 | "died": "",
2200 | "death_note": ""
2201 | },
2202 | {
2203 | "name": "Numbericons",
2204 | "image": "",
2205 | "description": "Numbericons are a race of aliens who resemble giant numbers. They have skin that looks like dinosaur skin and their faces have glowing yellow eyes and fangs. They appeared in the episode Get Schwifty. The Numbericons are rivals with the Alphabetrians, and in this episode, they were in a war with them. They were invading their castle and trying to destroy them. Ice-T went up against the Numbericons and jumped out into the army and started shooting all of them up.",
2206 | "appearance": [
2207 | "s2e5"
2208 | ],
2209 | "died": "s2e5",
2210 | "death_note": ""
2211 | },
2212 | {
2213 | "name": "Simon",
2214 | "image": "",
2215 | "description": "Simon is a guy who works for The Pentagon. He appeared in the episode Get Schwifty. Simon was very against all of the ideas that The President had about Rick and Morty saving the world but he kept being shot down, and sure enough, he was disproven.",
2216 | "appearance": [
2217 | "s2e5"
2218 | ],
2219 | "died": "",
2220 | "death_note": ""
2221 | },
2222 | {
2223 | "name": "Terry",
2224 | "image": "",
2225 | "description": "Terry was a news reporter who reported on the Cromulons in the sky which created chaos over Earth. He was live on an unknown news network, talking with Jim when commenting on the destruction and climate change being created by the giant head. When the Cromulon started talking, Terry was nearly hit by a falling helicopter caused by the Cromulon's voice.",
2226 | "appearance": [
2227 | "s2e5"
2228 | ],
2229 | "died": "",
2230 | "death_note": ""
2231 | },
2232 | {
2233 | "name": "The President",
2234 | "image": "The_President.png",
2235 | "description": "The President is the president of the United States of America. He first appeared in the episode Get Schwifty and is voiced by actor Wikipedia:Keith David.",
2236 | "appearance": [
2237 | "s2e5",
2238 | "s3e10"
2239 | ],
2240 | "died": "",
2241 | "death_note": ""
2242 | },
2243 | {
2244 | "name": "Chris (The Ricks Must Be Crazy)",
2245 | "image": "",
2246 | "description": "Chris is the president of the Microverse. He appeared in the episode The Ricks Must Be Crazy, and is voiced by Alan Tudyk. Chris is the head of the society that control's Rick's car, using an invention called the Gooble Box that he gave them. However, Rick's car stopped working when he allowed Zeep Zanflorp to make an invention that would make Rick's obsolete, oblivious to the fact that this would mean the end of Rick's car battery life. He, and the rest of his species, appear to be very gullible, due to falling for Rick's \"Translations\" of words, such as 'Fuck You' meaning 'Happy to Oblige' and the Middle Finger meaning 'Peace among Worlds'. He also appears oblivious to the fact that Rick simply wears Antennae to convince them that he's an Alien.",
2247 | "appearance": [
2248 | "s2e6"
2249 | ],
2250 | "died": "",
2251 | "death_note": ""
2252 | },
2253 | {
2254 | "name": "Giant Telepathic Spiders",
2255 | "image": "",
2256 | "description": "Giant Telepathic Spiders are a race of giant spiders that have telepathic abilities featured in the episode The Ricks Must Be Crazy. Their major food source was humans.",
2257 | "appearance": [
2258 | "s2e6"
2259 | ],
2260 | "died": "",
2261 | "death_note": ""
2262 | },
2263 | {
2264 | "name": "Hunter",
2265 | "image": "",
2266 | "description": "Hunter was the son of Hunter's Dad, who died drowned in a pool at the age of only 7 years old. He was briefly recreated by Rick's ship after Summer insisted she not be protected by violent means. The Hunter recreation asked his father to leave the car alone before disintegrating into purple slime, causing lasting psychological trauma.",
2267 | "appearance": [
2268 | "s2e6"
2269 | ],
2270 | "died": "s2e6",
2271 | "death_note": ""
2272 | },
2273 | {
2274 | "name": "Hunter's Dad",
2275 | "image": "",
2276 | "description": "Hunter's Dad is a minor character that appears in the episode The Ricks Must Be Crazy. He works as a police officer who responds to a call of Rick's ship causing violence when it's set in \"Keep Summer Safe\" mode.",
2277 | "appearance": [
2278 | "s2e6"
2279 | ],
2280 | "died": "",
2281 | "death_note": ""
2282 | },
2283 | {
2284 | "name": "Kyle",
2285 | "image": "",
2286 | "description": "Kyle is a minor character introduced in the episode \"The Ricks Must Be Crazy\" who existed within Zeep Xanflorp Miniverse.",
2287 | "appearance": [
2288 | "s2e6"
2289 | ],
2290 | "died": "s2e6",
2291 | "death_note": ""
2292 | },
2293 | {
2294 | "name": "The President of the Miniverse",
2295 | "image": "",
2296 | "description": "The President of the Miniverse is the unnamed president who is the head of the society in Zeep Zanflorp's miniverse. He appeared in the episode The Ricks Must Be Crazy. Like Chris (The Ricks Must Be Crazy) and the scientist Zeep, he is the only one who knows about a top secret project being worked on by the scientist Kyle, wherein he is making his own miniature universe that will provide a universal source of energy for them, making the energy source that power's Zeep's universe obsolete.",
2297 | "appearance": [
2298 | "s2e6"
2299 | ],
2300 | "died": "s2e6",
2301 | "death_note": ""
2302 | },
2303 | {
2304 | "name": "Tree People",
2305 | "image": "",
2306 | "description": "Tree People are a race introduced in the episode The Ricks Must Be Crazy. They exist within the Teenyverse created by Kyle. Morty becomes the leader of the people when Rick and Zeep Zanflorp, and himself are trapped within the Teenyverse. They, along with their universe, were killed when Rick destroyed the Miniverse.",
2307 | "appearance": [
2308 | "s2e6"
2309 | ],
2310 | "died": "s2e6",
2311 | "death_note": ""
2312 | },
2313 | {
2314 | "name": "Zeep Xanflorp",
2315 | "image": "",
2316 | "description": "Zeep Xanflorp is a scientist within Rick's Microverse Battery who creates his own micro-planet power supply called the Miniverse. His development of a new power supply prevents Rick from using his flying car. Zeep is depicted as arrogant and very intelligent, and in many ways a parallel of Rick Sanchez.",
2317 | "appearance": [
2318 | "s2e6"
2319 | ],
2320 | "died": "",
2321 | "death_note": ""
2322 | },
2323 | {
2324 | "name": "Beth's Mytholog",
2325 | "image": "",
2326 | "description": "Beth's Mytholog is a physical representation of the way Jerry perceives Beth that went rogue and tried to take over the universe. It appeared in the episode Big Trouble In Little Sanchez.",
2327 | "appearance": [
2328 | "s2e7"
2329 | ],
2330 | "died": "s2e7",
2331 | "death_note": ""
2332 | },
2333 | {
2334 | "name": "Coach Feratu",
2335 | "image": "",
2336 | "description": "Coach Feratu is an unseen character that was mentioned in the episode Big Trouble In Little Sanchez. He was a Vampire who was employed as a gym teacher at Harry Herpson High School.",
2337 | "appearance": [
2338 | "s2e7"
2339 | ],
2340 | "died": "s2e7",
2341 | "death_note": ""
2342 | },
2343 | {
2344 | "name": "Gar Gloonch",
2345 | "image": "",
2346 | "description": "Gar Gloonch is a Zombodian that appeared in the episode Big Trouble In Little Sanchez. He and his wife, Zarbadar were having marital issues and went to Nuptia 4, for counseling. Unfortunately for them their attempt to repair their marriage unexpectedly ended in disaster when the mythologues of Beth and Jerry Smith broke out of their cells and went on a murderous rampage, killing Gar and Zarbadar in the process. However, Gar has made several appearances as a background character in later episodes including The Wedding Squanchers.",
2347 | "appearance": [
2348 | "s2e7"
2349 | ],
2350 | "died": "s2e7",
2351 | "death_note": ""
2352 | },
2353 | {
2354 | "name": "Gar's Mytholog",
2355 | "image": "",
2356 | "description": "Gar's Mytholog is a physical representation of how Zarbadar perceives Gar. It appeared in the episode Big Trouble In Little Sanchez.",
2357 | "appearance": [
2358 | "s2e7"
2359 | ],
2360 | "died": "s2e7",
2361 | "death_note": ""
2362 | },
2363 | {
2364 | "name": "Glexo Slim Slom",
2365 | "image": "",
2366 | "description": "Glexo Slim Slom is an alien couples counselor at Nuptia 4, who appears in the episode \"Big Trouble In Little Sanchez\". Beth and Jerry were sent to Nuptia 4 by Rick for couples counseling because it is the galaxy's most successful couples counseling institute, meaning Glexo must be one of the galaxy's best counselors. ",
2367 | "appearance": [
2368 | "s2e7"
2369 | ],
2370 | "died": "",
2371 | "death_note": ""
2372 | },
2373 | {
2374 | "name": "Goddess Beth",
2375 | "image": "",
2376 | "description": "Goddess Beth is one of the mythologs of Beth Smith. She appears in the episode Big Trouble In Little Sanchez. She is the way Ideal Jerry sees Beth.",
2377 | "appearance": [
2378 | "s2e7"
2379 | ],
2380 | "died": "",
2381 | "death_note": ""
2382 | },
2383 | {
2384 | "name": "Ideal Jerry",
2385 | "image": "",
2386 | "description": "Ideal Jerry Big Trouble In Little Sanchez<span>. He is the way Beth views Jerry when he is fighting off Jerry's Mytholog.",
2387 | "appearance": [
2388 | "s2e7"
2389 | ],
2390 | "died": "s2e7",
2391 | "death_note": ""
2392 | },
2393 | {
2394 | "name": "Jerry's Mytholog",
2395 | "image": "",
2396 | "description": "Jerry's Mytholog is a physical representation of the way that Beth perceives Jerry. It went rogue and teamed up with Beth's Mytholog in an attempt to take over the universe. It appeared in the episode Big Trouble In Little Sanchez.",
2397 | "appearance": [
2398 | "s2e7"
2399 | ],
2400 | "died": "s2e7",
2401 | "death_note": ""
2402 | },
2403 | {
2404 | "name": "Self-Congratulatory Jerry",
2405 | "image": "",
2406 | "description": "Self-Congratulatory Jerry is one of the mythologs of Jerry Smith. He appears in the episode \"Big Trouble In Little Sanchez\". When Jerry says \"Beth, it's me, your husband. I'm here to save you, or my name isn't Jerry Smith!\" Beth's new mental image of egocentric Jerry comes marching out of the mytholog machine. ",
2407 | "appearance": [
2408 | "s2e7"
2409 | ],
2410 | "died": "s2e7",
2411 | "death_note": ""
2412 | },
2413 | {
2414 | "name": "Tiny Rick",
2415 | "image": "",
2416 | "description": "Tiny Rick is a younger version of Rick created through Operation Phoenix in the episode \"Big Trouble In Little Sanchez\". By transferring his brain into a younger clone of himself, Rick is able to attend Harry Herpson High School, along with Morty and Summer, in an effort to help catch a vampire within their school.",
2417 | "appearance": [
2418 | "s2e7"
2419 | ],
2420 | "died": "s2e7",
2421 | "death_note": ""
2422 | },
2423 | {
2424 | "name": "Toby Matthews",
2425 | "image": "",
2426 | "description": "Toby Matthews is a boy at Harry Herpson High School that Summer had a crush on. He appeared in the episode \"Big Trouble In Little Sanchez\".",
2427 | "appearance": [
2428 | "s2e7"
2429 | ],
2430 | "died": "",
2431 | "death_note": ""
2432 | },
2433 | {
2434 | "name": "Zarbadar Gloonch",
2435 | "image": "",
2436 | "description": "Zarbadar Gloonch is a Drumbloxians that appeared in Big Trouble In Little Sanchez. She and her husband, Gar were having marital issues and went to Nuptia 4 for counseling. Unfortunately for them, their attempt to repair their marriage ended in disaster when Beth and Jerry Smith's mythologs broke out of their cells and went on a murderous rampage, killing Zarbadar and her husband in the process.",
2437 | "appearance": [
2438 | "s2e7"
2439 | ],
2440 | "died": "s2e7",
2441 | "death_note": ""
2442 | },
2443 | {
2444 | "name": "Zarbadar's Mytholog",
2445 | "image": "",
2446 | "description": "Zarbadar's Mytholog is the physical representation of how Gar perceives Zarbadar. It appeared in the episode Big Trouble In Little Sanchez.",
2447 | "appearance": [
2448 | "s2e7"
2449 | ],
2450 | "died": "s2e7",
2451 | "death_note": ""
2452 | },
2453 | {
2454 | "name": "Blamphs",
2455 | "image": "",
2456 | "description": "Blamphs are an interdimensional alien species that appeared in the episode Interdimensional Cable 2: Tempting Fate. A group of them work in a factory, where they produce Plumbuses.",
2457 | "appearance": [
2458 | "s2e8"
2459 | ],
2460 | "died": "",
2461 | "death_note": ""
2462 | },
2463 | {
2464 | "name": "Dr. Glip-Glop",
2465 | "image": "",
2466 | "description": "Dr. Glip-Glop is a minor character introduced in the episode \"Interdimensional Cable 2: Tempting Fate\". He was initially assigned to treat Jerry, who was suffering from an illness after consuming mutant bacteria. However, as Dr. Glip-Glop was introducing himself, Jerry vomited on him. The goo landed on his eyes and sent him into a murderous rage due to its effects. Before he could attack anyone, he was shot and disintegrated by Rick.",
2467 | "appearance": [
2468 | "s2e8"
2469 | ],
2470 | "died": "s2e8",
2471 | "death_note": ""
2472 | },
2473 | {
2474 | "name": "Eyehole Man",
2475 | "image": "",
2476 | "description": "Eyehole Man is a spandex-clad alien with a megaphone who lives to beat up anyone who is caught with the cereal \"Eyeholes\". He is featured in various commercials across the galaxy, as shown in the episode Interdimensional Cable 2: Tempting Fate. He claims that only he can have Eyeholes. Rick Sanchez tells Morty Smith not to be caught with a box of Eyeholes in his possession when the Eyehole Man is around or else he'll start beating him up to get his box of Eyeholes back.",
2477 | "appearance": [
2478 | "s2e8"
2479 | ],
2480 | "died": "",
2481 | "death_note": ""
2482 | },
2483 | {
2484 | "name": "Fleeb",
2485 | "image": "",
2486 | "description": "Fleeb is a character\/object that appeared in the episode Interdimensional Cable 2: Tempting Fate. It is living being that is used as a tool for making Plumbuses. It excretes a juice called Fleeb Juice.",
2487 | "appearance": [
2488 | "s2e8"
2489 | ],
2490 | "died": "",
2491 | "death_note": ""
2492 | },
2493 | {
2494 | "name": "Garblovians",
2495 | "image": "",
2496 | "description": "Garblovians are an alien race in the Rick and Morty multiverse. They speak what sounds like a nonsense language, saying things like \"Aga blah blah\" or \"Gaggablaghblagh\" while expecting every other race to understand. Garblovians frequently explode into a blue gooey mess. It is unknown why they explode. Jerry tries unsuccessfully to communicate with a few varieties of them after trying to leave the Jerryboree.",
2497 | "appearance": [
2498 | "s2e8"
2499 | ],
2500 | "died": "s2e8",
2501 | "death_note": ""
2502 | },
2503 | {
2504 | "name": "Hamsters In Butts",
2505 | "image": "",
2506 | "description": "Hamsters In Butts are a race of Interdimensional hamsters who reside in the rectums of humans. The Smith family took a vacation in their dimension in Rixty Minutes.",
2507 | "appearance": [
2508 | "s2e8"
2509 | ],
2510 | "died": "",
2511 | "death_note": ""
2512 | },
2513 | {
2514 | "name": "Jan-Michael Vincent",
2515 | "image": "",
2516 | "description": "[https:\/\/en.wikipedia.org\/wiki\/Jan-Michael_Vincent Jan-Michael Vincent] is an actor who appeared in Interdimensional Cable 2: Tempting Fate. Eight versions of him appeared in the movie Jan Quadrant Vincent 16. Based on the trailer for the movie, it appeared to be an action movie set in a dystopian society where Jan Michael Vincents helped to maintain order.",
2517 | "appearance": [
2518 | "s2e8"
2519 | ],
2520 | "died": "",
2521 | "death_note": ""
2522 | },
2523 | {
2524 | "name": "Little Dipper",
2525 | "image": "",
2526 | "description": "Little Dipper is a Tinymouth that first appeared in Unbelievable Tales as a guest star for \"Silly Silly Fun Fun\". He appears on Rick and Morty in Interdimensional Cable 2: Tempting Fate advertising \"Lil' Bits\".",
2527 | "appearance": [
2528 | "s2e8"
2529 | ],
2530 | "died": "",
2531 | "death_note": ""
2532 | },
2533 | {
2534 | "name": "Michael Thompson",
2535 | "image": "",
2536 | "description": "Michael Thompson is a character who appeared in the episode Interdimensional Cable 2: Tempting Fate. He is a news reporter who works on a news channel called \"Opposite News\". He is also the conjoined twin of Picheal Thompson.",
2537 | "appearance": [
2538 | "s2e8"
2539 | ],
2540 | "died": "",
2541 | "death_note": ""
2542 | },
2543 | {
2544 | "name": "Octopus Man",
2545 | "image": "",
2546 | "description": "Octopus Man is a character that appears on an interdimensional TV channel in Interdimensional Cable 2: Tempting Fate. He's a marine biologist that was bitten by an octopus.",
2547 | "appearance": [
2548 | "s2e8"
2549 | ],
2550 | "died": "",
2551 | "death_note": ""
2552 | },
2553 | {
2554 | "name": "Phillip Jacobs",
2555 | "image": "",
2556 | "description": "Phillip Jacobs is the host of the Personal Space Show, an interdimensional television show watched by Rick, Morty and Summer at St. Gloopy Noops Hospital",
2557 | "appearance": [
2558 | "s2e8"
2559 | ],
2560 | "died": "",
2561 | "death_note": ""
2562 | },
2563 | {
2564 | "name": "Pichael Thompson",
2565 | "image": "",
2566 | "description": "Pichael Thompson is a character who appeared in Interdimensional Cable 2: Tempting Fate. He is the host of a show called \"Cooking Things\". He is also conjoined twins with Michael Thompson.",
2567 | "appearance": [
2568 | "s2e8"
2569 | ],
2570 | "died": "",
2571 | "death_note": ""
2572 | },
2573 | {
2574 | "name": "Shlaammi",
2575 | "image": "",
2576 | "description": "Shlaammi is a species of alien creatures from another dimension. It appeared in the episode Interdimensional Cable 2: Tempting Fate. Little is known about their species, except for the fact that one of them works in a factory for making Plumbuses. Their job consists of rubbing the dinglebop and then spitting on it, after it has been pushed through the grumbo.",
2577 | "appearance": [
2578 | "s2e8"
2579 | ],
2580 | "died": "",
2581 | "death_note": ""
2582 | },
2583 | {
2584 | "name": "Shrimply Pibbles",
2585 | "image": "",
2586 | "description": "Shrimply Pibbles is the galaxy's most influential civil rights leader. He appears in Interdimensional Cable 2: Tempting Fate when Jerry Smith's penis is needed to replace his failing heart.",
2587 | "appearance": [
2588 | "s2e8"
2589 | ],
2590 | "died": "",
2591 | "death_note": ""
2592 | },
2593 | {
2594 | "name": "Stealy",
2595 | "image": "",
2596 | "description": "Stealy is a character seen in \"Interdimensional Cable 2: Tempting Fate\". He stars in The Adventures of Stealy, a TV series where he goes through locations stealing numerous items and determining their value In brapples.",
2597 | "appearance": [
2598 | "s2e8"
2599 | ],
2600 | "died": "",
2601 | "death_note": ""
2602 | },
2603 | {
2604 | "name": "Yaarb",
2605 | "image": "",
2606 | "description": "Yaarb is an alien diplomat who appeared in the episode Interdimensional Cable 2: Tempting Fate. He is one of the two diplomats who was trying to persuade Jerry Smith to donate his penis so it could be used to save the life of alien civil rights leader Shrimply Pibbles",
2607 | "appearance": [
2608 | "s2e8"
2609 | ],
2610 | "died": "",
2611 | "death_note": ""
2612 | },
2613 | {
2614 | "name": "Arthricia",
2615 | "image": "",
2616 | "description": "Arthricia is an alien girl who lives on a distant Purge Planet that appeared in the episode Look Who's Purging Now. She is a nice little Amish girl who appears to be some kind of a cat-like human. She doesn't agree with the yearly purges, in which her planet's society has and fights every year to survive during them.",
2617 | "appearance": [
2618 | "s2e9"
2619 | ],
2620 | "died": "",
2621 | "death_note": ""
2622 | },
2623 | {
2624 | "name": "General Store Owner",
2625 | "image": "",
2626 | "description": "General Store Owner is a resident of a small town on the Purge Planet from Look Who's Purging Now.",
2627 | "appearance": [
2628 | "s2e9"
2629 | ],
2630 | "died": "",
2631 | "death_note": ""
2632 | },
2633 | {
2634 | "name": "Lighthouse Keeper",
2635 | "image": "",
2636 | "description": "Lighthouse Keeper was an alien who worked the lighthouse on a distant planet. Rick and Morty came to the lighthouse to put up a beacon to send themselves back to Earth, but the Lighthouse Keeper told them that they were allowed to do so on the condition that they listened to his tale.",
2637 | "appearance": [
2638 | "s2e9"
2639 | ],
2640 | "died": "s2e9",
2641 | "death_note": ""
2642 | },
2643 | {
2644 | "name": "Purge Planet Ruler",
2645 | "image": "",
2646 | "description": "Purge Planet Ruler is the unnamed and extremely rich and greedy, sadistic headmaster of the Purge Planet who appeared in the episode Look Who's Purging Now. He is a selfish and snobbish asshole who only cares about himself and all the money he gets. He lives in an extremely luxurious mansion, while his people live in an Amish country and he has an organized, yearly purge, where everybody has one day where all laws are disabled and everyone can kill each other in a free for all. Rick, Morty, and one of his people, known as Arthricia, broke into his mansion one purge night and they killed him, for his horrid ways of running their country and they overthrew him, to keep their country in a safer place.",
2647 | "appearance": [
2648 | "s2e9"
2649 | ],
2650 | "died": "s2e9",
2651 | "death_note": ""
2652 | },
2653 | {
2654 | "name": "Taddy Mason",
2655 | "image": "",
2656 | "description": "Taddy Mason is a character who appeared in the episode Look Who's Purging Now. He is a guy who works a phone hotline where avoidant, full-grown adults can call him and just talk to him about anything. Ever since Jerry lost his job, he's been calling him day after day and even obsessing over him. He is voiced by Justin Roiland.",
2657 | "appearance": [
2658 | "s2e9"
2659 | ],
2660 | "died": "",
2661 | "death_note": ""
2662 | },
2663 | {
2664 | "name": "Donna Gueterman",
2665 | "image": "",
2666 | "description": "Donna Gueterman was the mother of Tammy and is first introduced in the episode The Wedding Squanchers during Bird Person wedding. She and her husband Pat Gueterman introduce themselves to Beth and Jerry during the wedding's reception.",
2667 | "appearance": [
2668 | "s2e10"
2669 | ],
2670 | "died": "s2e10",
2671 | "death_note": ""
2672 | },
2673 | {
2674 | "name": "Lil B",
2675 | "image": "",
2676 | "description": "Lil B was a jazz singer who performed at Birdperson and Tammy Gueterman's wedding on Planet Squanch.",
2677 | "appearance": [
2678 | "s2e10"
2679 | ],
2680 | "died": "s2e10",
2681 | "death_note": ""
2682 | },
2683 | {
2684 | "name": "Pat Gueterman",
2685 | "image": "",
2686 | "description": "Pat Gueterman was the father of Tammy and is first introduced in the episode The Wedding Squanchers during her wedding to Bird Person. He and his wife Donna Gueterman introduce themselves to Beth and Jerry during the wedding's reception.",
2687 | "appearance": [
2688 | "s2e10"
2689 | ],
2690 | "died": "s2e10",
2691 | "death_note": ""
2692 | },
2693 | {
2694 | "name": "Black Rick",
2695 | "image": "",
2696 | "description": "Black Rick is two versions of Rick Sanchez, of African-American culture. He appeared in the episode \"The Rickshank Rickdemption\", in the Citadel of Ricks.",
2697 | "appearance": [
2698 | "s3e1",
2699 | "s3e7"
2700 | ],
2701 | "died": "",
2702 | "death_note": ""
2703 | },
2704 | {
2705 | "name": "Commander Rick",
2706 | "image": "",
2707 | "description": "Commander Rick was the commander in chief of the Citadel of Ricks's militia. He was a minor character in the Season 3 premiere, The Rickshank Rickdemption, and his current status is unknown but he is presumably dead.",
2708 | "appearance": [
2709 | "s3e1"
2710 | ],
2711 | "died": "s3e1",
2712 | "death_note": ""
2713 | },
2714 | {
2715 | "name": "Cornvelious Daniel",
2716 | "image": "",
2717 | "description": "Cornvelious Daniel was the Galactic Federation agent tasked with obtaining the formula for inter-dimensional travel from Rick Sanchez's brain. He is voiced by Nathan Fillion.",
2718 | "appearance": [
2719 | "s3e1"
2720 | ],
2721 | "died": "s3e1",
2722 | "death_note": ""
2723 | },
2724 | {
2725 | "name": "Diane Sanchez",
2726 | "image": "",
2727 | "description": "Diane Sanchez is a hypothetical version of Rick Sanchez wife and Beth Smith mother, who appeared in a memory projection in \"The Rickshank Rickdemption\". She and Beth are both killed by a bomb sent by another Rick.",
2728 | "appearance": [
2729 | "s3e1",
2730 | "s3e9"
2731 | ],
2732 | "died": "",
2733 | "death_note": ""
2734 | },
2735 | {
2736 | "name": "Dipper and Mabel Mortys",
2737 | "image": "",
2738 | "description": "Dipper and Mabel Mortys are alternate versions of Morty Smith, modeled after the character Dipper and Mabel Pines from the show Gravity Falls. The appeared in the Citadel of Ricks in the episode \"The Rickshank Rickdemption\".",
2739 | "appearance": [
2740 | "s3e1"
2741 | ],
2742 | "died": "",
2743 | "death_note": ""
2744 | },
2745 | {
2746 | "name": "Galactic Federation President",
2747 | "image": "",
2748 | "description": "Galactic Federation President was the president of the Galactic Federation. He committed suicide after Rick Sanchez changed the value of the Blemflarck, the federation's single, centralized unit of currency, from $1 to $0.",
2749 | "appearance": [
2750 | "s3e1"
2751 | ],
2752 | "died": "s3e1",
2753 | "death_note": ""
2754 | },
2755 | {
2756 | "name": "Lawyer Morty",
2757 | "image": "",
2758 | "description": "Lawyer Morty is a Morty who poses as a lawyer at the Council of Ricks. He is put on Morty and Summer's side for their quarrel against the Council of Ricks in The Rickshank Rickdemption, where he is shown to be less of a serious lawyer and only there because \"he's fun\". He apparently has a pog collection.",
2759 | "appearance": [
2760 | "s3e1"
2761 | ],
2762 | "died": "",
2763 | "death_note": ""
2764 | },
2765 | {
2766 | "name": "Morty Rick",
2767 | "image": "",
2768 | "description": "Morty Rick is either a Rick, a Morty, or a combination of both. He appeared in the episode The Rickshank Rickdemption, in the background at the Citadel of Ricks.",
2769 | "appearance": [
2770 | "s3e1"
2771 | ],
2772 | "died": "",
2773 | "death_note": ""
2774 | },
2775 | {
2776 | "name": "Rick Sanchez (D-99)",
2777 | "image": "",
2778 | "description": "Rick D-99 was a member of SEAL Team Ricks who was sent by the Citadel of Ricks to assassinate Rick Sanchez (C-137). He was clearly among the toughest and most dangerous Ricks as he was part of their elite assassination unit. His body was used by Rick C-137 in his elaborate plot to destroy the Galactic Federation.",
2779 | "appearance": [
2780 | "s3e1"
2781 | ],
2782 | "died": "s3e1",
2783 | "death_note": ""
2784 | },
2785 | {
2786 | "name": "Salesman Rick",
2787 | "image": "",
2788 | "description": "Salesman Rick appears in the game Pocket Mortys, where he serves as a shopkeeper. Salesman Rick's store is located at the Citadel of Ricks, but it can also be accessed through a player's MortyPad, allowing players to purchase items in other dimensions.",
2789 | "appearance": [
2790 | "s3e1"
2791 | ],
2792 | "died": "",
2793 | "death_note": ""
2794 | },
2795 | {
2796 | "name": "SEAL Team Ricks",
2797 | "image": "",
2798 | "description": "SEAL Team Ricks was a team dispatched by the Council of Ricks to retrieve and kill Rick Sanchez in \"The Rickshank Rickdemption\". The name is a play on Wikipedia:SEAL Team Six, an offensive unit responsible for the death of Wikipedia:Osama bin Laden. One of its members was Rick Sanchez (Dimension D-99).",
2799 | "appearance": [
2800 | "s3e1"
2801 | ],
2802 | "died": "s3e1",
2803 | "death_note": ""
2804 | },
2805 | {
2806 | "name": "Wall Crawling Rick",
2807 | "image": "",
2808 | "description": "Wall Crawling Rick is a reptilian Rick Sanchez who has the ability to climb on walls. He appeared in the episode \"The Rickshank Rickdemption\" in the Citadel of Ricks.",
2809 | "appearance": [
2810 | "s3e1"
2811 | ],
2812 | "died": "",
2813 | "death_note": ""
2814 | },
2815 | {
2816 | "name": "Armothy",
2817 | "image": "",
2818 | "description": "Armothy is the name Morty Smith gave an arm which previously contained the life of an inhabitant from the Post-Apocalyptic Dimension. In his previous life, Armothy used to be a woodcutter in a small village, which was then pillaged by invaders. These invaders then burned his family alive and tortured him, causing him to seek revenge through murder. Armothy's fate, whether by the invaders or eventual death by the Death Stalkers, is unknown, but his arm eventually ended up hung out to dry in the back of a car, presumably fated to be eaten. ",
2819 | "appearance": [
2820 | "s3e2"
2821 | ],
2822 | "died": "",
2823 | "death_note": ""
2824 | },
2825 | {
2826 | "name": "Blue Footprint Guy",
2827 | "image": "",
2828 | "description": "Blue Footprint Guy is a character who appears in the episode Rickmancing the Stone. He was a member of the Death Stalkers and attempted to kill Rick, but was crushed by Rick's vehicle.",
2829 | "appearance": [
2830 | "s3e2"
2831 | ],
2832 | "died": "s3e2",
2833 | "death_note": ""
2834 | },
2835 | {
2836 | "name": "Colossus",
2837 | "image": "",
2838 | "description": "Colossus was a warrior on the Post-Apocalyptic Dimension's version of Earth and the leader of the Death Stalkers before Summer killed him.",
2839 | "appearance": [
2840 | "s3e2"
2841 | ],
2842 | "died": "s3e2",
2843 | "death_note": ""
2844 | },
2845 | {
2846 | "name": "Eli",
2847 | "image": "",
2848 | "description": "Eli is a neighbor of Summer Smith and Hemorrhage, as well as Rick Sanchez and Morty Smith in the Post-Apocalyptic Dimension. He is shown to also have a relationship with an Eli's Girlfriend. ",
2849 | "appearance": [
2850 | "s3e2"
2851 | ],
2852 | "died": "",
2853 | "death_note": ""
2854 | },
2855 | {
2856 | "name": "Eli's Girlfriend",
2857 | "image": "",
2858 | "description": "Eli's Girlfriend is a woman from the Post-Apocalyptic Dimension, of whom Eli had sexual relations with, impregnating her with a son. She was friends with Summer Smith, during the three week interval, she lived in her neighborhood with Hemorrhage. She appeared in the episode, \"Rickmancing the Stone\".",
2859 | "appearance": [
2860 | "s3e2"
2861 | ],
2862 | "died": "",
2863 | "death_note": ""
2864 | },
2865 | {
2866 | "name": "Genital Washer",
2867 | "image": "",
2868 | "description": "Genital Washer is a slave of the unnamed Slaveowner from the Post-Apocalyptic Dimension. His sole purpose is to wash his genitals, and he was named specifically after his purpose. He appeared in \"Rickmancing the Stone\".",
2869 | "appearance": [
2870 | "s3e2"
2871 | ],
2872 | "died": "",
2873 | "death_note": ""
2874 | },
2875 | {
2876 | "name": "Hemorrhage",
2877 | "image": "",
2878 | "description": "Hemorrhage is the leader of the inhabitants of the Post-Apocalyptic Dimension, where he acts as a hunter, killing the inhabitants which did not change along with his group. He is shown to be very capable of driving and has excellent shooting skills. He appeared in \"Rickmancing the Stone\".",
2879 | "appearance": [
2880 | "s3e2"
2881 | ],
2882 | "died": "",
2883 | "death_note": ""
2884 | },
2885 | {
2886 | "name": "Mechanical Morty",
2887 | "image": "",
2888 | "description": "Mechanical Morty is a robotic clone of Morty Smith, built by Rick Sanchez to trick Beth Morty into thinking her family was still around, when they were in the Post-Apocalyptic Dimension. He appeared in \"Rickmancing the Stone\".",
2889 | "appearance": [
2890 | "s3e2"
2891 | ],
2892 | "died": "",
2893 | "death_note": ""
2894 | },
2895 | {
2896 | "name": "Mechanical Rick",
2897 | "image": "",
2898 | "description": "Mechanical Rick is a robotic clone of Rick Sanchez, invented by Rick, himself, in order to trick Beth Smith into believing her family was still around, when they were really in the Post-Apocalyptic Dimension. HRickmancing the Stone",
2899 | "appearance": [
2900 | "s3e2"
2901 | ],
2902 | "died": "",
2903 | "death_note": ""
2904 | },
2905 | {
2906 | "name": "Mechanical Summer",
2907 | "image": "",
2908 | "description": "Mechanical Summer is a robotic clone of Summer Smith, built by Rick Sanchez to trick Beth Smith into thinking her family was still around, while they were in the Post-Apocalyptic Dimension. She appeared in \"Rickmancing the Stone\".",
2909 | "appearance": [
2910 | "s3e2"
2911 | ],
2912 | "died": "",
2913 | "death_note": ""
2914 | },
2915 | {
2916 | "name": "Mohawk Guy",
2917 | "image": "",
2918 | "description": "Mohawk Guy is an unnamed warrior in the Post-Apocalyptic Dimension, who was part of the team that attacked Rick Sanchez, Morty Smith, and Summer Smith in the episode Rickmancing the Stone. He dies after jumping onto Rick, Morty and Summer's car and blowing himself up.",
2919 | "appearance": [
2920 | "s3e2"
2921 | ],
2922 | "died": "s3e2",
2923 | "death_note": ""
2924 | },
2925 | {
2926 | "name": "Slaveowner",
2927 | "image": "",
2928 | "description": "Slaveowner is an unnamed man from the Post-Apocalyptic Dimension who appeared in \"Rickmancing the Stone\". He ordered the death of Armothy's village and family, who returned to avenge them. He is ultimately strangled to death by Morty and Rick. ",
2929 | "appearance": [
2930 | "s3e2"
2931 | ],
2932 | "died": "s3e2",
2933 | "death_note": ""
2934 | },
2935 | {
2936 | "name": "Taint Washer",
2937 | "image": "",
2938 | "description": "Taint Washer is one of the slaves of the unnamed Slaveowner from the Post-Apocalyptic Dimension. His purpose is specifically to wash his master's taint, which has become his official name.",
2939 | "appearance": [
2940 | "s3e2"
2941 | ],
2942 | "died": "",
2943 | "death_note": ""
2944 | },
2945 | {
2946 | "name": "Agency director",
2947 | "image": "",
2948 | "description": "Agency Director is an antagonist who leads a Russian agency in the episode Pickle Rick. He dies in the explosion caused by Pickle Rick (character) at the agency's headquarters.",
2949 | "appearance": [
2950 | "s3e3"
2951 | ],
2952 | "died": "s3e3",
2953 | "death_note": ""
2954 | },
2955 | {
2956 | "name": "Concerto",
2957 | "image": "",
2958 | "description": "Concerto is a minor, one-time villain, who only appeared in the ending credits of \"Pickle Rick\" as well as in the theme song for Season 3. He is a music-related villain, who attempted to crush Rick Sanchez and Morty Smith with the hammers on a giant piano. He was killed by Jaguar, before he could do any harm to Rick Sanchez or Morty Smith but did kill 4 other people.",
2959 | "appearance": [
2960 | "s3e3"
2961 | ],
2962 | "died": "s3e3",
2963 | "death_note": ""
2964 | },
2965 | {
2966 | "name": "Dr. Wong",
2967 | "image": "",
2968 | "description": "Dr. Wong is a family therapist who the Smith Family visited after the events of Beth Smith and Jerry Smith divorce. She first appeared in \"Pickle Rick\".",
2969 | "appearance": [
2970 | "s3e3"
2971 | ],
2972 | "died": "",
2973 | "death_note": ""
2974 | },
2975 | {
2976 | "name": "Izzy",
2977 | "image": "",
2978 | "description": "Izzy is a neighbor's cat on the street where the Smith Family lives. She appeared in \"Pickle Rick\".",
2979 | "appearance": [
2980 | "s3e3"
2981 | ],
2982 | "died": "",
2983 | "death_note": ""
2984 | },
2985 | {
2986 | "name": "Jaguar",
2987 | "image": "",
2988 | "description": "Jaguar is a criminal who was incarcerated by a Russian agency. He traded the assassination of Pickle Rick (character) for the release of his daughter, Katarina. Jaguar first appeared in \"Pickle Rick\"",
2989 | "appearance": [
2990 | "s3e3"
2991 | ],
2992 | "died": "",
2993 | "death_note": ""
2994 | },
2995 | {
2996 | "name": "Katarina",
2997 | "image": "",
2998 | "description": "Katarina was the daughter of Jaguar and a unnamed woman. She never made an appearance, but was mentioned in \"Pickle Rick\" and was Jaguar's only motivation to try and kill Rick Sanchez.",
2999 | "appearance": [
3000 | "s3e3"
3001 | ],
3002 | "died": "",
3003 | "death_note": ""
3004 | },
3005 | {
3006 | "name": "Pickle Rick (character)",
3007 | "image": "",
3008 | "description": "Pickle Rick is a version of Rick Sanchez first seen in a teaser for Season 3 of Rick and Morty. His only functional body parts are his eyes and a mouth. This situation forces him to create gruesome means of transportation.",
3009 | "appearance": [
3010 | "s3e3"
3011 | ],
3012 | "died": "",
3013 | "death_note": ""
3014 | },
3015 | {
3016 | "name": "Alan Rails",
3017 | "image": "",
3018 | "description": "Alan Rails is a superhero who appeared in Vindicators 3: The Return of Worldender as a member of The Vindicators. His parents' tragic death in a railroad accident caused him to gain the ability to summon ghost trains. He was married to Supernova, but the two divorced sometime in the past, possibly due to Alan's suspicion of Supernova cheating on him with Million Ants. His death was caused by a feud with Supernova in relation to her sexual interactions with Million Ants, who killed him by exploding his body from the inside after Alan attacked him.",
3019 | "appearance": [
3020 | "s3e4"
3021 | ],
3022 | "died": "s3e4",
3023 | "death_note": ""
3024 | },
3025 | {
3026 | "name": "Calypso",
3027 | "image": "",
3028 | "description": "Calypso was a sorceress and former member of The Vindicators, who died on their second adventure, along with Lady Katana and Diablo Verde.",
3029 | "appearance": [
3030 | "s3e4"
3031 | ],
3032 | "died": "",
3033 | "death_note": ""
3034 | },
3035 | {
3036 | "name": "Crocubot",
3037 | "image": "",
3038 | "description": "Crocubot is a superhero and a member of The Vindicators who first appeared in Vindicators 3: The Return of Worldender",
3039 | "appearance": [
3040 | "s3e4"
3041 | ],
3042 | "died": "s3e4",
3043 | "death_note": ""
3044 | },
3045 | {
3046 | "name": "Diablo Verde",
3047 | "image": "",
3048 | "description": "Diablo Verde was a Mexican superhero and a member of The Vindicators who was mentioned in \"Vindicators 3: The Return of Worldender\". He was never seen, but he was mentioned to have died, along with Lady Katana and Calypso, in battle with Doom-Nomitron.",
3049 | "appearance": [
3050 | "s3e4"
3051 | ],
3052 | "died": "",
3053 | "death_note": ""
3054 | },
3055 | {
3056 | "name": "Lady Katana",
3057 | "image": "",
3058 | "description": "Lady Katana was a former member of The Vindicators, who died in their second adventure, along with Calypso and Diablo Verde.",
3059 | "appearance": [
3060 | "s3e4"
3061 | ],
3062 | "died": "",
3063 | "death_note": ""
3064 | },
3065 | {
3066 | "name": "Logic",
3067 | "image": "",
3068 | "description": "Robert Bryson Hall II, more commonly known by his stage name Logic, is an American rapper, singer, songwriter, and record producer. He claims to be a fan of Rick and Morty (TV series), and makes a guest appearance, as himself, in the Season 3 episode, \"Vindicators 3: The Return of Worldender.\" He was hired by Rick Sanchez to perform on stage at his party for Noob-Noob.",
3069 | "appearance": [
3070 | "s3e4"
3071 | ],
3072 | "died": "",
3073 | "death_note": ""
3074 | },
3075 | {
3076 | "name": "Million Ants",
3077 | "image": "",
3078 | "description": "Million Ants is a superhero and a member of The Vindicators who appeared in Vindicators 3: The Return of Worldender.",
3079 | "appearance": [
3080 | "s3e4"
3081 | ],
3082 | "died": "s3e4",
3083 | "death_note": ""
3084 | },
3085 | {
3086 | "name": "Noob-Noob",
3087 | "image": "",
3088 | "description": "Noob-Noob is a small masked character who made his first appearance in \"Vindicators 3: The Return of Worldender.\" He acts as a janitor for the The Vindicators, and is generally underappreciated. ",
3089 | "appearance": [
3090 | "s3e4"
3091 | ],
3092 | "died": "",
3093 | "death_note": ""
3094 | },
3095 | {
3096 | "name": "Supernova",
3097 | "image": "",
3098 | "description": "Supernova is a super-heroine who appeared in \"Vindicators 3: The Return of Worldender\" as a member of The Vindicators. With the exception of Noob Noob, she is the only Vindicator still alive and nominally a part of the team. She appears to be a more serious parody of Starfire from DC Comics.",
3099 | "appearance": [
3100 | "s3e4"
3101 | ],
3102 | "died": "",
3103 | "death_note": ""
3104 | },
3105 | {
3106 | "name": "The Vindicators",
3107 | "image": "",
3108 | "description": "",
3109 | "appearance": [
3110 | "s3e4"
3111 | ],
3112 | "died": "",
3113 | "death_note": ""
3114 | },
3115 | {
3116 | "name": "Vance Maximus",
3117 | "image": "",
3118 | "description": "Vance Maximus, Renegade Starsoldier is a member of the superhero team The Vindicators, who made his first appearance in \"[http:\/\/rickandmorty.wikia.com\/wiki\/Vindicators%203%3A%20The%20Return%20of%20Worldender Vindicators 3: The Return of Worldender].\" He is a pastiche\/parody of flippant, scene-stealing heroes like Peter Quill\/Star Lord and Tony Stark\/Iron Man.",
3119 | "appearance": [
3120 | "s3e4"
3121 | ],
3122 | "died": "",
3123 | "death_note": ""
3124 | },
3125 | {
3126 | "name": "Worldender",
3127 | "image": "",
3128 | "description": "Worldender is a supervillain and an antagonist who appeared in \"Vindicators 3: The Return of Worldender\". He is the archnemesis of The Vindicators. His villainy, as his name implies, is revealed to be destroying planets and committing genocide on numerous alien species.",
3129 | "appearance": [
3130 | "s3e4"
3131 | ],
3132 | "died": "s3e4",
3133 | "death_note": ""
3134 | },
3135 | {
3136 | "name": "Gene",
3137 | "image": "",
3138 | "description": "Gene is the next door neighbor of the Smith Family. He appeared in \"The Whirly Dirly Conspiracy\".",
3139 | "appearance": [
3140 | "s3e5"
3141 | ],
3142 | "died": "",
3143 | "death_note": ""
3144 | },
3145 | {
3146 | "name": "Gibble Snake",
3147 | "image": "",
3148 | "description": "Gibble Snake appears in The Whirly Dirly Conspiracy. It is a huge snake that preys on children that wander off. Jerry accidentally steps into its mouth and the Gibble Snake swallows him. Rick then uses his knife to get Jerry out of its stomach, killing the Snake. Rick then uses Jerry being coated in the creature's bile to attract a Shmooglite Runner.",
3149 | "appearance": [
3150 | "s3e5"
3151 | ],
3152 | "died": "s3e5",
3153 | "death_note": ""
3154 | },
3155 | {
3156 | "name": "Lisa",
3157 | "image": "",
3158 | "description": "Lisa was an alien little girl who appeared in the episode, \"The Whirly Dirly Conspiracy.\" She was seen playing with her brother at the restaurant where Rick and Jerry are drinking. They have a real weapon they shoot each other with. The restaurant is part of a resort with an immortality shield, making Lisa, her brother, and everyone there immortal.",
3159 | "appearance": [
3160 | "s3e5"
3161 | ],
3162 | "died": "s3e5",
3163 | "death_note": ""
3164 | },
3165 | {
3166 | "name": "Risotto Groupon",
3167 | "image": "",
3168 | "description": "Risotto Groupon is an antagonist who appeared in The Whirly Dirly Conspiracy. He is the assistant manager of a restaurant. He is the apparent leader of his people, he wants revenge against Rick for selling weapons to their enemies, ending with their enslavement, and tries to get Jerry to help him. After Rick survives the attempt on his life, Risotto catches up to him on a commercial space-liner and prepares to kill the now mentally inferior Rick. Following a mind-altering trip through space-time, however, he is finally killed by Rick, having bought enough time to regain his intellect and cybernetic augments.",
3169 | "appearance": [
3170 | "s3e5"
3171 | ],
3172 | "died": "s3e5",
3173 | "death_note": ""
3174 | },
3175 | {
3176 | "name": "Shmooglite Runner",
3177 | "image": "",
3178 | "description": "Shmooglite Runner appears in The Whirly Dirly Conspiracy. It's a yellow carnivorious creature that Rick uses to transport himself and Jerry back to the resort.",
3179 | "appearance": [
3180 | "s3e5"
3181 | ],
3182 | "died": "",
3183 | "death_note": ""
3184 | },
3185 | {
3186 | "name": "Shnoopy Bloopers",
3187 | "image": "",
3188 | "description": "Shnoopy Bloopers is an alien friend of Rick Sanchez's who made his first appearance in \"The Whirly Dirly Conspiracy.\" He is the owner of an unnamed restaurant in the Immortality Field Resort. ",
3189 | "appearance": [
3190 | "s3e5"
3191 | ],
3192 | "died": "",
3193 | "death_note": ""
3194 | },
3195 | {
3196 | "name": "Tricia Lange",
3197 | "image": "",
3198 | "description": "Tricia Lange is a classmate of Summer Smith and Morty Smith known for her large breasts, and a recurring character in Rick and Morty (TV series). She is friends with Jessica and went on a date with Ethan. She first appeared in the episode, \"The Whirly Dirly Conspiracy.\"",
3199 | "appearance": [
3200 | "s3e5",
3201 | "s3e6"
3202 | ],
3203 | "died": "",
3204 | "death_note": ""
3205 | },
3206 | {
3207 | "name": "Tusked Assassin",
3208 | "image": "",
3209 | "description": "Tusked Assassin is a character who appeared in The Whirly Dirly Conspiracy. He is a one of the Tuskfish Aliens and was hired to assassinate Rick Sanchez on the Whirly Dirly.",
3210 | "appearance": [
3211 | "s3e5"
3212 | ],
3213 | "died": "",
3214 | "death_note": ""
3215 | },
3216 | {
3217 | "name": "Jacqueline",
3218 | "image": "",
3219 | "description": "Jacqueline was a girl Morty Smith dated and lived with for three weeks in \"Rest and Ricklaxation\".",
3220 | "appearance": [
3221 | "s3e6"
3222 | ],
3223 | "died": "",
3224 | "death_note": ""
3225 | },
3226 | {
3227 | "name": "Mitch",
3228 | "image": "",
3229 | "description": "Mitch is a student at Harry Herpson High School, who Morty Smith taught how to play the trombone. He appeared in \"Rest and Ricklaxation\".",
3230 | "appearance": [
3231 | "s3e6"
3232 | ],
3233 | "died": "",
3234 | "death_note": ""
3235 | },
3236 | {
3237 | "name": "Stacy",
3238 | "image": "",
3239 | "description": "Stacy is an adult woman who Morty Smith dated in \"Rest and Ricklaxation\".",
3240 | "appearance": [
3241 | "s3e6"
3242 | ],
3243 | "died": "",
3244 | "death_note": ""
3245 | },
3246 | {
3247 | "name": "Toxic Morty",
3248 | "image": "",
3249 | "description": "Toxic Morty is the embodiment of all qualities Morty Smith deems negative. ",
3250 | "appearance": [
3251 | "s3e6"
3252 | ],
3253 | "died": "s3e6",
3254 | "death_note": ""
3255 | },
3256 | {
3257 | "name": "Toxic Rick",
3258 | "image": "",
3259 | "description": "Toxic Rick is the embodiment of all qualities Rick Sanchez deems negative, created as the result of Rick and Morty Smith having all their cognitive toxins removed in an intergalactic day spa.",
3260 | "appearance": [
3261 | "s3e6"
3262 | ],
3263 | "died": "s3e6",
3264 | "death_note": ""
3265 | },
3266 | {
3267 | "name": "Adjudicator Rick",
3268 | "image": "",
3269 | "description": "Adjudicator Rick is a Rick that appears in the episode The Ricklantis Mixup.",
3270 | "appearance": [
3271 | "s3e7"
3272 | ],
3273 | "died": "",
3274 | "death_note": ""
3275 | },
3276 | {
3277 | "name": "Bald Rick",
3278 | "image": "",
3279 | "description": "Bald Rick appears in the game Pocket Mortys. He also appeared in Ricklantis Mixup as one of the Ricks that Evil Morty had executed.File:20160504 195643.jpg",
3280 | "appearance": [
3281 | "s3e7"
3282 | ],
3283 | "died": "s3e7",
3284 | "death_note": ""
3285 | },
3286 | {
3287 | "name": "Beret Morty",
3288 | "image": "",
3289 | "description": "",
3290 | "appearance": [
3291 | "s3e7"
3292 | ],
3293 | "died": "",
3294 | "death_note": ""
3295 | },
3296 | {
3297 | "name": "Big Morty",
3298 | "image": "",
3299 | "description": "Big Morty is an alternate version of Morty Smith who appeared in the episode, \"The Ricklantis Mixup\". He is killed by Cop Morty shortly after he is introduced.",
3300 | "appearance": [
3301 | "s3e7"
3302 | ],
3303 | "died": "s3e7",
3304 | "death_note": ""
3305 | },
3306 | {
3307 | "name": "Bootleg Portal Chemist Rick",
3308 | "image": "",
3309 | "description": "Bootleg Portal Chemist Rick is a Rick that appears in the episode The Ricklantis Mixup, he attempts to make a Portal Gun for the Mortytown Locos.",
3310 | "appearance": [
3311 | "s3e7"
3312 | ],
3313 | "died": "s3e7",
3314 | "death_note": ""
3315 | },
3316 | {
3317 | "name": "Businessman Ricks",
3318 | "image": "",
3319 | "description": "",
3320 | "appearance": [
3321 | "s3e7"
3322 | ],
3323 | "died": "",
3324 | "death_note": ""
3325 | },
3326 | {
3327 | "name": "Campaign Manager Morty",
3328 | "image": "",
3329 | "description": "Campaign Manager Morty is one of the infinite versions of Morty. He appeared in The Ricklantis Mixup, as the Campaign Manager for Evil Morty, who had disguised himself with an alter ego in order to win the election. He attempted to assassinate Evil Morty after being fired and finding out the truth, but his assassination attempt failed and he was thrown out the airlock by the Secret Service Ricks. ",
3330 | "appearance": [
3331 | "s3e7"
3332 | ],
3333 | "died": "s3e7",
3334 | "death_note": ""
3335 | },
3336 | {
3337 | "name": "Construction Worker Ricks",
3338 | "image": "",
3339 | "description": "",
3340 | "appearance": [
3341 | "s3e7"
3342 | ],
3343 | "died": "",
3344 | "death_note": ""
3345 | },
3346 | {
3347 | "name": "Cool Rick",
3348 | "image": "",
3349 | "description": "Rick Sanchez of Dimension K-83, affectionately known as Cool Rick, is the current supervisor at the Simple Rick\u2019s Wafer Cookie factory. He was given the position after the previous supervisor was promoted to Regional Manager.",
3350 | "appearance": [
3351 | "s3e7"
3352 | ],
3353 | "died": "",
3354 | "death_note": ""
3355 | },
3356 | {
3357 | "name": "Cop Morty",
3358 | "image": "",
3359 | "description": "Cop Morty is an alternate version of Morty Smith who appeared in the episode, \"The Ricklantis Mixup\".",
3360 | "appearance": [
3361 | "s3e7"
3362 | ],
3363 | "died": "s3e7",
3364 | "death_note": ""
3365 | },
3366 | {
3367 | "name": "Cop Rick",
3368 | "image": "",
3369 | "description": "Cop Rick is an alternate version of Rick Sanchez who first appeared in the episode, \"The Ricklantis Mixup\". He was the former partner of Cop Morty before he killed him in the nightclub The Creepy Morty in Mortytown.",
3370 | "appearance": [
3371 | "s3e7"
3372 | ],
3373 | "died": "",
3374 | "death_note": ""
3375 | },
3376 | {
3377 | "name": "Crop Top Morty",
3378 | "image": "",
3379 | "description": "Crop Top Morty is a background character who first made his appearance in \"The Ricklantis Mixup\".",
3380 | "appearance": [
3381 | "s3e7"
3382 | ],
3383 | "died": "",
3384 | "death_note": ""
3385 | },
3386 | {
3387 | "name": "Crystal Morty",
3388 | "image": "",
3389 | "description": "",
3390 | "appearance": [
3391 | "s3e7"
3392 | ],
3393 | "died": "",
3394 | "death_note": ""
3395 | },
3396 | {
3397 | "name": "Facemask Morty",
3398 | "image": "",
3399 | "description": "",
3400 | "appearance": [
3401 | "s3e7"
3402 | ],
3403 | "died": "",
3404 | "death_note": ""
3405 | },
3406 | {
3407 | "name": "Fat Morty",
3408 | "image": "",
3409 | "description": "Fat Morty was a Morty on the Citadel of Ricks who debuted in season 3 episode 7 \"The Ricklantis Mixup.\" He originally thought that he was \"left-handed Morty.\" He is friends with Slick Morty, Glasses Morty, and Lizard Morty whom he is also classmates with at a school for Morty's in the Citadel.",
3410 | "appearance": [
3411 | "s3e7"
3412 | ],
3413 | "died": "",
3414 | "death_note": ""
3415 | },
3416 | {
3417 | "name": "Garment District Rick",
3418 | "image": "",
3419 | "description": "Garment District Rick is a Rick that appears in \"The Ricklantis Mixup\".",
3420 | "appearance": [
3421 | "s3e7"
3422 | ],
3423 | "died": "s3e7",
3424 | "death_note": ""
3425 | },
3426 | {
3427 | "name": "Glasses Morty",
3428 | "image": "",
3429 | "description": "Glasses Morty is a Morty who first made his appearance in \"The Ricklantis Mixup\".",
3430 | "appearance": [
3431 | "s3e7"
3432 | ],
3433 | "died": "",
3434 | "death_note": ""
3435 | },
3436 | {
3437 | "name": "Head Flower Morty",
3438 | "image": "",
3439 | "description": "",
3440 | "appearance": [
3441 | "s3e7"
3442 | ],
3443 | "died": "",
3444 | "death_note": ""
3445 | },
3446 | {
3447 | "name": "Headphones Rick",
3448 | "image": "",
3449 | "description": "",
3450 | "appearance": [
3451 | "s3e7"
3452 | ],
3453 | "died": "",
3454 | "death_note": ""
3455 | },
3456 | {
3457 | "name": "Investigator Rick",
3458 | "image": "",
3459 | "description": "Investigator Rick was a Rick in the Citadel of Ricks. His only appearance was in The Ricklantis Mixup.",
3460 | "appearance": [
3461 | "s3e7"
3462 | ],
3463 | "died": "s3e7",
3464 | "death_note": ""
3465 | },
3466 | {
3467 | "name": "Juggling Rick",
3468 | "image": "",
3469 | "description": "",
3470 | "appearance": [
3471 | "s3e7"
3472 | ],
3473 | "died": "",
3474 | "death_note": ""
3475 | },
3476 | {
3477 | "name": "Lizard Morty",
3478 | "image": "",
3479 | "description": "",
3480 | "appearance": [
3481 | "s3e7"
3482 | ],
3483 | "died": "",
3484 | "death_note": ""
3485 | },
3486 | {
3487 | "name": "Luxury Rick",
3488 | "image": "",
3489 | "description": "",
3490 | "appearance": [
3491 | "s3e7"
3492 | ],
3493 | "died": "",
3494 | "death_note": ""
3495 | },
3496 | {
3497 | "name": "Marty Morty",
3498 | "image": "",
3499 | "description": "",
3500 | "appearance": [
3501 | "s3e7"
3502 | ],
3503 | "died": "",
3504 | "death_note": ""
3505 | },
3506 | {
3507 | "name": "Mega Fruit Farmer Rick",
3508 | "image": "",
3509 | "description": "Mega Fruit Farmer Rick is a mega fruit farmer on the Citadel of Ricks.",
3510 | "appearance": [
3511 | "s3e7"
3512 | ],
3513 | "died": "",
3514 | "death_note": ""
3515 | },
3516 | {
3517 | "name": "Morty Mart Manager Morty",
3518 | "image": "",
3519 | "description": "",
3520 | "appearance": [
3521 | "s3e7"
3522 | ],
3523 | "died": "",
3524 | "death_note": ""
3525 | },
3526 | {
3527 | "name": "Morty Smith (K-22)",
3528 | "image": "",
3529 | "description": "Morty Smith (K-22) is a Morty who travels with Rick Sanchez (K-22) to collect donations to the Citadel of Ricks redevelopment fund in the episode The Ricklantis Mixup .",
3530 | "appearance": [
3531 | "s3e7"
3532 | ],
3533 | "died": "",
3534 | "death_note": ""
3535 | },
3536 | {
3537 | "name": "Mortytown Locos",
3538 | "image": "",
3539 | "description": "",
3540 | "appearance": [
3541 | "s3e7"
3542 | ],
3543 | "died": "",
3544 | "death_note": ""
3545 | },
3546 | {
3547 | "name": "Pink Insect Morty",
3548 | "image": "",
3549 | "description": "",
3550 | "appearance": [
3551 | "s3e7"
3552 | ],
3553 | "died": "",
3554 | "death_note": ""
3555 | },
3556 | {
3557 | "name": "Plumber Rick",
3558 | "image": "",
3559 | "description": "Plumber rick is an alternate version of Rick Sanchez who first appeared in the episode, \"The Ricklantis Mixup\". He is a plumber on who lives on the Citadel of Ricks.",
3560 | "appearance": [
3561 | "s3e7"
3562 | ],
3563 | "died": "",
3564 | "death_note": ""
3565 | },
3566 | {
3567 | "name": "Policeman Rick",
3568 | "image": "",
3569 | "description": "",
3570 | "appearance": [
3571 | "s3e7"
3572 | ],
3573 | "died": "",
3574 | "death_note": ""
3575 | },
3576 | {
3577 | "name": "Private Sector Rick",
3578 | "image": "",
3579 | "description": "",
3580 | "appearance": [
3581 | "s3e7"
3582 | ],
3583 | "died": "s3e7",
3584 | "death_note": ""
3585 | },
3586 | {
3587 | "name": "Psychopath Morty",
3588 | "image": "",
3589 | "description": "",
3590 | "appearance": [
3591 | "s3e7"
3592 | ],
3593 | "died": "s3e7",
3594 | "death_note": ""
3595 | },
3596 | {
3597 | "name": "Red Sweater Rick",
3598 | "image": "",
3599 | "description": "",
3600 | "appearance": [
3601 | "s3e7"
3602 | ],
3603 | "died": "s3e7",
3604 | "death_note": ""
3605 | },
3606 | {
3607 | "name": "Regional Manager Rick",
3608 | "image": "",
3609 | "description": "Regional Manager Rick is a Rick that appears in the episode The Ricklantis Mixup he is the regional manager of the Simple Rick\u2019s Wafer Cookie factory. He is killed by Rick J-22.",
3610 | "appearance": [
3611 | "s3e7"
3612 | ],
3613 | "died": "s3e7",
3614 | "death_note": ""
3615 | },
3616 | {
3617 | "name": "Retired General Rick",
3618 | "image": "",
3619 | "description": "",
3620 | "appearance": [
3621 | "s3e7"
3622 | ],
3623 | "died": "",
3624 | "death_note": ""
3625 | },
3626 | {
3627 | "name": "Reverse Rick Outrage",
3628 | "image": "",
3629 | "description": "Reverse Rick Outrage was a presidential candidate in the Citadel of Ricks Election in \"The Ricklantis Mixup.\" His character is likely designed to resemble U.S. Senator and former presidential candidate Bernie Sanders.",
3630 | "appearance": [
3631 | "s3e7"
3632 | ],
3633 | "died": "s3e7",
3634 | "death_note": ""
3635 | },
3636 | {
3637 | "name": "Rick D. Sanchez III",
3638 | "image": "",
3639 | "description": "Rick D. Sanchez III was an alternate version of Rick Sanchez who first appeared in the episode, \"The Ricklantis Mixup\". He was the owner of Simple Rick's Wafers and Simple Rick\u2019s Wafer Cookie factory. He offers Rick J-22 freedom, just to taser him and use him for Simple Rick's Wafers. Later in a meeting of the Shadow Council of Ricks, he is executed by Evil Morty's guards.",
3640 | "appearance": [
3641 | "s3e7"
3642 | ],
3643 | "died": "s3e7",
3644 | "death_note": ""
3645 | },
3646 | {
3647 | "name": "Rick Guilt Rick",
3648 | "image": "",
3649 | "description": "Rick Guilt Rick was a presidential candidate in the Citadel of Ricks Election in \"The Ricklantis Mixup.\" His character is likely designed to resemble Jimmy McMillan, a politician affiliated with the \"Rent is Too Damn High Party,\" a populist political organization based in New York state.",
3650 | "appearance": [
3651 | "s3e7"
3652 | ],
3653 | "died": "",
3654 | "death_note": ""
3655 | },
3656 | {
3657 | "name": "Rick Sanchez (D716)",
3658 | "image": "",
3659 | "description": "Rick Sanchez (D716) is a co-anchor for Citadel Morning News on the channel CN at the Citadel of Ricks. He works alongside Rick Sanchez (D716-B) in the studio, with Rick Sanchez (D716-C) in the field. ",
3660 | "appearance": [
3661 | "s3e7"
3662 | ],
3663 | "died": "",
3664 | "death_note": ""
3665 | },
3666 | {
3667 | "name": "Rick Sanchez (D716-B)",
3668 | "image": "",
3669 | "description": "Rick D716-B is a co-anchor for the news channel CN on the Citadel of Ricks.",
3670 | "appearance": [
3671 | "s3e7"
3672 | ],
3673 | "died": "",
3674 | "death_note": ""
3675 | },
3676 | {
3677 | "name": "Rick Sanchez (D716-C)",
3678 | "image": "",
3679 | "description": "Rick D716-C is a field reporter for the Citadel Morning News on channel CN at the Citadel of Ricks. He works with Rick (D716) and Rick (D716-B) in the studio.",
3680 | "appearance": [
3681 | "s3e7"
3682 | ],
3683 | "died": "",
3684 | "death_note": ""
3685 | },
3686 | {
3687 | "name": "Rick Sanchez (J-22)",
3688 | "image": "",
3689 | "description": "Rick Sanchez J-22 is an alternate version of Rick Sanchez who first appeared in the episode, \"The Ricklantis Mixup\". He is a factory worker at Simple Rick\u2019s Wafer Cookie factory, first acting as part of the wafer assembly line and now as part of the flavour core.",
3690 | "appearance": [
3691 | "s3e7"
3692 | ],
3693 | "died": "",
3694 | "death_note": ""
3695 | },
3696 | {
3697 | "name": "Rick Sanchez (K-22)",
3698 | "image": "",
3699 | "description": "Rick K-22 is a Rick who travels from reality to reality collecting donations to the Citadel of Ricks' redevelopment fund in the episode The Ricklantis Mixup.",
3700 | "appearance": [
3701 | "s3e7"
3702 | ],
3703 | "died": "",
3704 | "death_note": ""
3705 | },
3706 | {
3707 | "name": "Simple Rick",
3708 | "image": "",
3709 | "description": "Simple Rick is a Rick that appears in the episode \"The Ricklantis Mixup.\"",
3710 | "appearance": [
3711 | "s3e7"
3712 | ],
3713 | "died": "s3e7",
3714 | "death_note": ""
3715 | },
3716 | {
3717 | "name": "Simple Rick's Factory Worker Ricks",
3718 | "image": "",
3719 | "description": "",
3720 | "appearance": [
3721 | "s3e7"
3722 | ],
3723 | "died": "",
3724 | "death_note": ""
3725 | },
3726 | {
3727 | "name": "Slick Morty",
3728 | "image": "",
3729 | "description": "Slick Morty was a Morty on the Citadel of Ricks. He appears in the episode The Ricklantis Mixup.",
3730 | "appearance": [
3731 | "s3e7"
3732 | ],
3733 | "died": "s3e7",
3734 | "death_note": ""
3735 | },
3736 | {
3737 | "name": "Slow Rick (Tall Morty)",
3738 | "image": "",
3739 | "description": "",
3740 | "appearance": [
3741 | "s3e7"
3742 | ],
3743 | "died": "",
3744 | "death_note": ""
3745 | },
3746 | {
3747 | "name": "Squid Morty",
3748 | "image": "",
3749 | "description": "",
3750 | "appearance": [
3751 | "s3e7"
3752 | ],
3753 | "died": "",
3754 | "death_note": ""
3755 | },
3756 | {
3757 | "name": "Teacher Rick",
3758 | "image": "",
3759 | "description": "Teacher Rick is an alternate version of Rick Sanchez who first appeared in the episode, \"The Ricklantis Mixup\". He is a teacher at Morty Academy, where Rickless Mortys are being trained for a new Rick. As it appears, the Morty Academy was created for Morty's to be the best sidekicks and always be positive towards Ricks, it seems as if Morty's are trained with only one point of view allowed and they have to be on that view or else they will fail the class\/not graduate from the Morty Academy. He has students called Fat Morty, Lizard Morty, Slick Morty, and Glasses Morty He has one Rick called Slow Rick, which he refers to as \"Tall Morty\".",
3760 | "appearance": [
3761 | "s3e7"
3762 | ],
3763 | "died": "",
3764 | "death_note": ""
3765 | },
3766 | {
3767 | "name": "Trunk Morty",
3768 | "image": "",
3769 | "description": "Trunk Morty is a Trunk People-version of Morty Smith. He is briefly seen in a hospital in The Ricklantis Mixup.",
3770 | "appearance": [
3771 | "s3e7"
3772 | ],
3773 | "died": "",
3774 | "death_note": ""
3775 | },
3776 | {
3777 | "name": "Beebo",
3778 | "image": "",
3779 | "description": "Beebo is an alien that Rick and Morty befriended and later killed in \"Morty's Mind Blowers.\" ",
3780 | "appearance": [
3781 | "s3e8"
3782 | ],
3783 | "died": "s3e8",
3784 | "death_note": ""
3785 | },
3786 | {
3787 | "name": "Gazorpians",
3788 | "image": "",
3789 | "description": "Gazorpians are a species of large humanoid aliens living on Gazorpazorp. Their species is divided into upper class and lower class by genders. The female part is led by Ma-Sha.",
3790 | "appearance": [
3791 | "s3e8"
3792 | ],
3793 | "died": "",
3794 | "death_note": ""
3795 | },
3796 | {
3797 | "name": "Gobo",
3798 | "image": "",
3799 | "description": "",
3800 | "appearance": [
3801 | "s3e8"
3802 | ],
3803 | "died": "s3e8",
3804 | "death_note": ""
3805 | },
3806 | {
3807 | "name": "Gordon Lunis",
3808 | "image": "",
3809 | "description": "Gordon Lunis is a mysterious man who appears to live on The Moon in \"Morty's Mind Blowers.\"",
3810 | "appearance": [
3811 | "s3e8"
3812 | ],
3813 | "died": "s3e8",
3814 | "death_note": ""
3815 | },
3816 | {
3817 | "name": "Jackoff",
3818 | "image": "",
3819 | "description": "",
3820 | "appearance": [
3821 | "s3e8"
3822 | ],
3823 | "died": "",
3824 | "death_note": ""
3825 | },
3826 | {
3827 | "name": "Jang",
3828 | "image": "",
3829 | "description": "",
3830 | "appearance": [
3831 | "s3e8"
3832 | ],
3833 | "died": "",
3834 | "death_note": ""
3835 | },
3836 | {
3837 | "name": "Truth Tortoise",
3838 | "image": "",
3839 | "description": "Truth Tortoise appears in Morty's Mind Blowers as the opening scene where Rick and Morty are running from the Morpheus (Sandman from ) with the Truth Tortoise. Rick mentions to never looking its eyes because you'll know everything.",
3840 | "appearance": [
3841 | "s3e8"
3842 | ],
3843 | "died": "",
3844 | "death_note": ""
3845 | },
3846 | {
3847 | "name": "Voltematron",
3848 | "image": "",
3849 | "description": "Voltematron, \"Destroyer of Worlds\", is a parasitical alien which once possessed Morty Smith and appeared in the episode Morty's Mind Blowers. ",
3850 | "appearance": [
3851 | "s3e8"
3852 | ],
3853 | "died": "s3e8",
3854 | "death_note": ""
3855 | },
3856 | {
3857 | "name": "Zick Zack",
3858 | "image": "",
3859 | "description": "",
3860 | "appearance": [
3861 | "s3e8"
3862 | ],
3863 | "died": "s3e8",
3864 | "death_note": ""
3865 | },
3866 | {
3867 | "name": "Garmos",
3868 | "image": "",
3869 | "description": "Garmos is a Keara's boyfriend that appears in The ABC's of Beth. He never is shown in the episode however.",
3870 | "appearance": [
3871 | "s3e9"
3872 | ],
3873 | "died": "s3e9",
3874 | "death_note": ""
3875 | },
3876 | {
3877 | "name": "Joseph Lipkip",
3878 | "image": "",
3879 | "description": "Joseph Eli Lipkip is a man, who was falsely accused of eating his son, Tommy, when he was really trapped in Froopyland, by Beth Smith, when she and Tommy were young children. He is nearly executed when Tommy's Clone shows up and he is declared innocent. He appeared in \"The ABC's of Beth\".",
3880 | "appearance": [
3881 | "s3e9"
3882 | ],
3883 | "died": "",
3884 | "death_note": ""
3885 | },
3886 | {
3887 | "name": "Keara",
3888 | "image": "",
3889 | "description": "Keara is Jerry Smith rebound alien girlfriend from The ABC's of Beth. She is a Warrior Priestess from Krutabulon who first met Jerry on an intergalactic dating website that Rick Sanchez recommended to him. Like others of her race, she has telekinetic powers which can be passed on to their lovers with a \"Soul Bonding\". Jerry eventually breaks up with her and shortly afterwards, it's revealed she was using Jerry as a rebound as well. Later on, it's confirmed she hooks up with Rick.",
3890 | "appearance": [
3891 | "s3e9"
3892 | ],
3893 | "died": "",
3894 | "death_note": ""
3895 | },
3896 | {
3897 | "name": "Michael (The ABC's of Beth)",
3898 | "image": "",
3899 | "description": "Michael is a character that has a voice only appearance in the episode The ABC's of Beth",
3900 | "appearance": [
3901 | "s3e9"
3902 | ],
3903 | "died": "",
3904 | "death_note": ""
3905 | },
3906 | {
3907 | "name": "Pink Sentient Switchblade",
3908 | "image": "",
3909 | "description": "Pink Sentient Switchblade is a pink sentient switchblade created by Rick Sanchez for his daughter Beth Smith when she was a child. Beth had requested the switchblade along with a number of other horrific items.",
3910 | "appearance": [
3911 | "s3e9"
3912 | ],
3913 | "died": "",
3914 | "death_note": ""
3915 | },
3916 | {
3917 | "name": "Tommy",
3918 | "image": "",
3919 | "description": "Tommy is Beth Smith childhood friend. As a child, Beth invited Tommy into Froopyland where she he attempted to trap him due to being jealous of him and his loving father. During this time, entered a bizarre and revolting cycle for inbreeding and cannibalism to survive. When Beth attempts to bring Tommy back in order to prove his father's innocence, who was convicted of murdering and eating him, she is forced to take matters into her own hands after he refused to return with her. Tommy's fate is unknown, as Beth only returns to the real world with a finger so that Rick can make a Tommy (clone).",
3920 | "appearance": [
3921 | "s3e9"
3922 | ],
3923 | "died": "s3e9",
3924 | "death_note": ""
3925 | },
3926 | {
3927 | "name": "Trandoor",
3928 | "image": "",
3929 | "description": "Trandoor is the on and off boyfriend of Keara. He appeared in \"The ABC's of Beth\".",
3930 | "appearance": [
3931 | "s3e9"
3932 | ],
3933 | "died": "",
3934 | "death_note": ""
3935 | },
3936 | {
3937 | "name": "Gargantuans",
3938 | "image": "",
3939 | "description": "",
3940 | "appearance": [
3941 | "s3e10"
3942 | ],
3943 | "died": "",
3944 | "death_note": ""
3945 | },
3946 | {
3947 | "name": "Invisi-troopers",
3948 | "image": "",
3949 | "description": "",
3950 | "appearance": [
3951 | "s3e10"
3952 | ],
3953 | "died": "",
3954 | "death_note": ""
3955 | },
3956 | {
3957 | "name": "Presidentress of The Mega Gargantuans",
3958 | "image": "",
3959 | "description": "Presidentress of The Mega Gargantuans is the political leader of the entire Gargantuans species, a molecular species that resigns in a kingdom in the Amazon Rainforest. She appeared in \"The Rickchurian Mortydate\".",
3960 | "appearance": [
3961 | "s3e10"
3962 | ],
3963 | "died": "",
3964 | "death_note": ""
3965 | },
3966 | {
3967 | "name": "Secretary of the Interior",
3968 | "image": "",
3969 | "description": "",
3970 | "appearance": [
3971 | "s3e10"
3972 | ],
3973 | "died": "",
3974 | "death_note": ""
3975 | },
3976 | {
3977 | "name": "Steve",
3978 | "image": "",
3979 | "description": "Steve is a member of The President Secret Service. He appeared in \"The Rickchurian Mortydate\".",
3980 | "appearance": [
3981 | "s3e10"
3982 | ],
3983 | "died": "",
3984 | "death_note": ""
3985 | },
3986 | {
3987 | "name": "Task Force Alpha",
3988 | "image": "",
3989 | "description": "Task Force Alpha is a group of four people, who work for The President. They appeared in \"The Rickchurian Mortydate\".",
3990 | "appearance": [
3991 | "s3e10"
3992 | ],
3993 | "died": "",
3994 | "death_note": ""
3995 | },
3996 | {
3997 | "name": "Mrs. Poopybutthole",
3998 | "image": "",
3999 | "description": "Mrs. Poopybutthole is the wife of Mr. Poopybutthole and the mother of Baby Poopybutthole. She appeared at the end of \"The Rickchurian Mortydate\".",
4000 | "appearance": [
4001 | "s3e10"
4002 | ],
4003 | "died": "",
4004 | "death_note": ""
4005 | },
4006 | {
4007 | "name": "Baby Poopybutthole",
4008 | "image": "",
4009 | "description": "Baby Poopyhole is the son of Mr. Poopybutthole and Mrs. Poopybutthole. He appeared at the end of \"The Rickchurian Mortydate\".",
4010 | "appearance": [
4011 | "s3e10"
4012 | ],
4013 | "died": "",
4014 | "death_note": ""
4015 | }
4016 | ];
4017 |
--------------------------------------------------------------------------------