loredata 0.1.0 → 0.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (95) hide show
  1. package/README.md +72 -21
  2. package/data/avengers/addresses.json +27 -0
  3. package/data/avengers/characters.json +178 -0
  4. package/data/avengers/meta.json +13 -0
  5. package/data/better-call-saul/addresses.json +37 -0
  6. package/data/better-call-saul/characters.json +156 -0
  7. package/data/better-call-saul/meta.json +13 -0
  8. package/data/big-bang-theory/addresses.json +31 -0
  9. package/data/big-bang-theory/characters.json +121 -0
  10. package/data/big-bang-theory/meta.json +13 -0
  11. package/data/breaking-bad/characters.json +49 -13
  12. package/data/breaking-bad/meta.json +10 -1
  13. package/data/fast-and-furious/characters.json +39 -13
  14. package/data/fast-and-furious/meta.json +15 -1
  15. package/data/friends/characters.json +138 -22
  16. package/data/friends/meta.json +13 -1
  17. package/data/game-of-thrones/characters.json +61 -16
  18. package/data/game-of-thrones/meta.json +10 -1
  19. package/data/guardians-of-the-galaxy/addresses.json +17 -0
  20. package/data/guardians-of-the-galaxy/characters.json +124 -0
  21. package/data/guardians-of-the-galaxy/meta.json +13 -0
  22. package/data/harry-potter/characters.json +37 -7
  23. package/data/harry-potter/meta.json +10 -1
  24. package/data/house-md/characters.json +79 -25
  25. package/data/house-md/meta.json +13 -1
  26. package/data/lost/characters.json +144 -36
  27. package/data/lost/meta.json +13 -1
  28. package/data/matrix/characters.json +133 -34
  29. package/data/matrix/meta.json +18 -1
  30. package/data/peaky-blinders/characters.json +44 -11
  31. package/data/peaky-blinders/meta.json +13 -1
  32. package/data/prison-break/addresses.json +24 -0
  33. package/data/prison-break/characters.json +116 -0
  34. package/data/prison-break/meta.json +13 -0
  35. package/data/sherlock/characters.json +116 -27
  36. package/data/sherlock/meta.json +13 -1
  37. package/data/simpsons/addresses.json +21 -0
  38. package/data/simpsons/characters.json +219 -0
  39. package/data/simpsons/meta.json +13 -0
  40. package/data/sopranos/addresses.json +37 -0
  41. package/data/sopranos/characters.json +184 -0
  42. package/data/sopranos/meta.json +13 -0
  43. package/data/south-park/addresses.json +31 -0
  44. package/data/south-park/characters.json +230 -0
  45. package/data/south-park/meta.json +13 -0
  46. package/data/spider-man/addresses.json +31 -0
  47. package/data/spider-man/characters.json +134 -0
  48. package/data/spider-man/meta.json +13 -0
  49. package/data/star-wars/addresses.json +19 -0
  50. package/data/star-wars/characters.json +153 -0
  51. package/data/star-wars/meta.json +13 -0
  52. package/data/supernatural/addresses.json +25 -0
  53. package/data/supernatural/characters.json +113 -0
  54. package/data/supernatural/meta.json +13 -0
  55. package/data/the-office/characters.json +84 -29
  56. package/data/the-office/meta.json +10 -1
  57. package/data/the-walking-dead/addresses.json +25 -0
  58. package/data/the-walking-dead/characters.json +114 -0
  59. package/data/the-walking-dead/meta.json +13 -0
  60. package/data/westworld/addresses.json +19 -0
  61. package/data/westworld/characters.json +108 -0
  62. package/data/westworld/meta.json +13 -0
  63. package/data/x-men/addresses.json +24 -0
  64. package/data/x-men/characters.json +158 -0
  65. package/data/x-men/meta.json +18 -0
  66. package/dist/browser.cjs +114 -69
  67. package/dist/browser.cjs.map +1 -1
  68. package/dist/browser.d.cts +7 -3
  69. package/dist/browser.d.ts +7 -3
  70. package/dist/browser.js +110 -69
  71. package/dist/browser.js.map +1 -1
  72. package/dist/cli/cli.cjs +131 -70
  73. package/dist/cli/cli.cjs.map +1 -1
  74. package/dist/cli/cli.js +132 -71
  75. package/dist/cli/cli.js.map +1 -1
  76. package/dist/index.cjs +132 -68
  77. package/dist/index.cjs.map +1 -1
  78. package/dist/index.d.cts +15 -4
  79. package/dist/index.d.ts +15 -4
  80. package/dist/index.js +132 -69
  81. package/dist/index.js.map +1 -1
  82. package/dist/{universe-store-DJrm7bP7.d.cts → universe-store-CWhCn3U6.d.cts} +31 -19
  83. package/dist/{universe-store-DJrm7bP7.d.ts → universe-store-CWhCn3U6.d.ts} +31 -19
  84. package/package.json +12 -4
  85. package/data/breaking-bad/domains.json +0 -6
  86. package/data/fast-and-furious/domains.json +0 -6
  87. package/data/friends/domains.json +0 -6
  88. package/data/game-of-thrones/domains.json +0 -6
  89. package/data/harry-potter/domains.json +0 -6
  90. package/data/house-md/domains.json +0 -6
  91. package/data/lost/domains.json +0 -6
  92. package/data/matrix/domains.json +0 -6
  93. package/data/peaky-blinders/domains.json +0 -6
  94. package/data/sherlock/domains.json +0 -6
  95. package/data/the-office/domains.json +0 -6
@@ -0,0 +1,113 @@
1
+ [
2
+ {
3
+ "id": "dean-winchester",
4
+ "firstName": "Dean",
5
+ "lastName": "Winchester",
6
+ "usernames": ["baby_driver", "righteous_man", "driver_picks_music"],
7
+ "profession": "Hunter",
8
+ "interests": ["hunting", "classic rock", "pie", "car mechanics", "burgers"],
9
+ "quotes": [
10
+ "Saving people, hunting things — the family business.",
11
+ "Driver picks the music, shotgun shuts his cakehole.",
12
+ "I'm Batman.",
13
+ "Son of a bitch.",
14
+ "I'm tired, man. I'm tired of fighting who I'm supposed to be."
15
+ ],
16
+ "gender": "male",
17
+ "symbol": "🚗",
18
+ "color": "#1e3a5f",
19
+ "emailDomains": ["hunter-network.net", "kansas-mail.com"]
20
+ },
21
+ {
22
+ "id": "sam-winchester",
23
+ "firstName": "Sam",
24
+ "lastName": "Winchester",
25
+ "usernames": ["moose_winchester", "lost_my_shoe", "say_yes_never"],
26
+ "profession": "Hunter",
27
+ "interests": ["research", "law", "hunting", "mythology", "books"],
28
+ "quotes": [
29
+ "I lost my shoe.",
30
+ "Probably because I started the apocalypse.",
31
+ "Most of the time I can hide it, but I am angry. I'm mad at everything.",
32
+ "I deserve it, and worse. Hell, you'll never punish me as much as I'm punishing myself.",
33
+ "I'm gonna rip you apart from the inside out. Do you understand me?!"
34
+ ],
35
+ "gender": "male",
36
+ "symbol": "📚",
37
+ "color": "#166534",
38
+ "emailDomains": ["hunter-network.net", "stanford-alumni.edu"]
39
+ },
40
+ {
41
+ "id": "castiel",
42
+ "firstName": "Castiel",
43
+ "usernames": ["gripped_tight", "holy_tax_accountant", "profound_bond"],
44
+ "profession": "Angel",
45
+ "interests": ["bees", "human customs", "prayer", "justice", "pop culture"],
46
+ "quotes": [
47
+ "I'm the one who gripped you tight and raised you from perdition.",
48
+ "I killed two angels this week. That's my brothers. I'm hunted, I have rebelled, and I did it — all of it — for you.",
49
+ "I don't have much time; we need to talk.",
50
+ "Loyalty... such a nice quality to see this day and age.",
51
+ "You don't think you deserve to be saved."
52
+ ],
53
+ "gender": "male",
54
+ "symbol": "🪶",
55
+ "color": "#1d4ed8",
56
+ "emailDomains": ["heavenly-host.net", "hunter-network.net"]
57
+ },
58
+ {
59
+ "id": "crowley",
60
+ "firstName": "Crowley",
61
+ "usernames": ["king_of_hell", "moose_squirrel", "crossroads_king"],
62
+ "profession": "King of Hell",
63
+ "interests": ["deals", "power", "scotch", "contract law", "soul collecting"],
64
+ "quotes": [
65
+ "I'm not a monster. I'm a business man.",
66
+ "Moose. Squirrel.",
67
+ "I deserve to be loved!",
68
+ "Success has many fathers, failure is a Winchester.",
69
+ "First impressions can be deceiving, Moose."
70
+ ],
71
+ "gender": "male",
72
+ "symbol": "🥃",
73
+ "color": "#7f1d1d",
74
+ "emailDomains": ["crossroads-deals.net", "hell-mail.org"]
75
+ },
76
+ {
77
+ "id": "bobby-singer",
78
+ "firstName": "Bobby",
79
+ "lastName": "Singer",
80
+ "usernames": ["salvage_yard_bobby", "idjit_hunter", "family_dont_end"],
81
+ "profession": "Hunter",
82
+ "interests": ["hunting", "research", "whiskey", "salvage yard", "books"],
83
+ "quotes": [
84
+ "Idjit.",
85
+ "Family don't end with blood, boy.",
86
+ "You're damn right you didn't listen. You were reckless and selfish and arrogant.",
87
+ "Singer Salvage. You got Bobby.",
88
+ "You don't stop being a soldier 'cause you got wounded in battle."
89
+ ],
90
+ "gender": "male",
91
+ "symbol": "🎩",
92
+ "color": "#4a3728",
93
+ "emailDomains": ["singer-salvage.com", "hunter-network.net"]
94
+ },
95
+ {
96
+ "id": "lucifer",
97
+ "firstName": "Lucifer",
98
+ "usernames": ["morningstar_falls", "say_yes_sam", "the_cage"],
99
+ "profession": "Archangel",
100
+ "interests": ["theological debate", "free will", "Enochian scripture", "the Cage"],
101
+ "quotes": [
102
+ "You know why God cast me down? Because I loved Him. More than anything.",
103
+ "I was a son. A brother, like you, a younger brother, and I had an older brother who I loved.",
104
+ "Think about it. Dad made everything, which means he made me who I am. God wanted the Devil!",
105
+ "You know, I never understood you pagans. You're such petty little things.",
106
+ "Brother, don't make me do this."
107
+ ],
108
+ "gender": "male",
109
+ "symbol": "🐍",
110
+ "color": "#3b0764",
111
+ "emailDomains": ["hell-mail.org", "morningstar-post.net"]
112
+ }
113
+ ]
@@ -0,0 +1,13 @@
1
+ {
2
+ "id": "supernatural",
3
+ "name": "Supernatural",
4
+ "genre": ["horror", "fantasy", "drama"],
5
+ "description": "Brothers Sam and Dean Winchester travel the American countryside hunting demons, ghosts, and other supernatural creatures while uncovering the secrets of their family's past.",
6
+ "tmdbId": 1621,
7
+ "mediaType": "tv",
8
+ "year": 2010,
9
+ "rating": 8,
10
+ "networks": ["HBO"],
11
+ "posterPath": "/kL6SqlVPpfAof2nQbh1VxkUuXBQ.jpg",
12
+ "backdropPath": "/7Yj4QbECkH3JavlZxw4NWReoN7B.jpg"
13
+ }
@@ -4,7 +4,7 @@
4
4
  "firstName": "Michael",
5
5
  "lastName": "Scott",
6
6
  "usernames": ["world_best_boss", "thats_what_she_said", "michael_g_scott"],
7
- "profession": "regional manager",
7
+ "profession": "Regional manager",
8
8
  "interests": ["improv comedy", "his employees", "Ryan Howard", "movie making"],
9
9
  "quotes": [
10
10
  "That's what she said.",
@@ -14,14 +14,22 @@
14
14
  "I am Beyoncé, always."
15
15
  ],
16
16
  "gender": "male",
17
- "address": {"street": "1725 Slough Ave", "city": "Scranton", "state": "PA", "country": "US"}
17
+ "address": {
18
+ "street": "1725 Slough Ave",
19
+ "city": "Scranton",
20
+ "state": "PA",
21
+ "country": "US"
22
+ },
23
+ "symbol": "🏆",
24
+ "color": "#312e81",
25
+ "emailDomains": ["dunder-mifflin.com", "michaelscottpaperco.net"]
18
26
  },
19
27
  {
20
28
  "id": "dwight-schrute",
21
29
  "firstName": "Dwight",
22
30
  "lastName": "Schrute",
23
31
  "usernames": ["assistant_regional_manager", "beet_farmer_mose", "schrute_farms"],
24
- "profession": "assistant to the regional manager",
32
+ "profession": "Assistant to the regional manager",
25
33
  "interests": ["beet farming", "karate", "Battlestar Galactica", "volunteer sheriff"],
26
34
  "quotes": [
27
35
  "Identity theft is not a joke, Jim! Millions of families suffer every year!",
@@ -31,14 +39,22 @@
31
39
  "Why tip someone for a job I'm capable of doing myself? I can deliver food. I can drive a taxi. I can, and do, cut my own hair."
32
40
  ],
33
41
  "gender": "male",
34
- "address": {"street": "Schrute Farms, Honesdale Road", "city": "Honesdale", "state": "PA", "country": "US"}
42
+ "address": {
43
+ "street": "Schrute Farms, Honesdale Road",
44
+ "city": "Honesdale",
45
+ "state": "PA",
46
+ "country": "US"
47
+ },
48
+ "symbol": "🌱",
49
+ "color": "#0c4a6e",
50
+ "emailDomains": ["dunder-mifflin.com", "pennsylvania-mail.net"]
35
51
  },
36
52
  {
37
53
  "id": "jim-halpert",
38
54
  "firstName": "Jim",
39
55
  "lastName": "Halpert",
40
56
  "usernames": ["big_tuna", "jello_stapler", "jim_from_sales"],
41
- "profession": "sales representative",
57
+ "profession": "Sales representative",
42
58
  "interests": ["pranking Dwight", "Pam Beesly", "sports", "beer"],
43
59
  "quotes": [
44
60
  "I am about to do something very bold in this job that I've never done before: try.",
@@ -47,14 +63,17 @@
47
63
  "I'm in love with you. I'm really sorry if that's weird for you to hear, but I needed you to hear it.",
48
64
  "My roommate wants to meet everybody. Because I'm pretty sure he thinks I'm making Dwight up. He is very real."
49
65
  ],
50
- "gender": "male"
66
+ "gender": "male",
67
+ "symbol": "😏",
68
+ "color": "#166534",
69
+ "emailDomains": ["dunder-mifflin.com", "athlead.net"]
51
70
  },
52
71
  {
53
72
  "id": "pam-beesly",
54
73
  "firstName": "Pam",
55
74
  "lastName": "Beesly",
56
75
  "usernames": ["reception_pam", "pamcasso", "pam_the_receptionist"],
57
- "profession": "receptionist",
76
+ "profession": "Receptionist",
58
77
  "interests": ["painting", "art", "Jim Halpert", "design"],
59
78
  "quotes": [
60
79
  "You know what they say about a car wreck, where it's so awful you can't look away? The Dundies are like a car wreck that you want to look away from but you have to stare at it because your boss is making you.",
@@ -63,14 +82,17 @@
63
82
  "I feel like all my kids grew up and then they married each other. It's every parent's dream.",
64
83
  "There's a lot of beauty in ordinary things. Isn't that kind of the point?"
65
84
  ],
66
- "gender": "female"
85
+ "gender": "female",
86
+ "symbol": "🎨",
87
+ "color": "#083344",
88
+ "emailDomains": ["dunder-mifflin.com", "beesly-art.net"]
67
89
  },
68
90
  {
69
91
  "id": "ryan-howard",
70
92
  "firstName": "Ryan",
71
93
  "lastName": "Howard",
72
94
  "usernames": ["wunderkind_ryan", "ryan_started_fire", "temp_to_vp"],
73
- "profession": "temp / VP of sales",
95
+ "profession": "Temp / VP of sales",
74
96
  "interests": ["entrepreneurship", "his startup", "Kelly Kapoor", "being important"],
75
97
  "quotes": [
76
98
  "If I had to, I could clean out my desk in five seconds, and nobody would ever know that I'd ever been here. And I'd forget, too.",
@@ -79,14 +101,17 @@
79
101
  "I was in my mid-twenties and I was going through a lot of stuff. I think I never fully processed 9/11.",
80
102
  "I just think that at this stage of my career, I need to be in a place where I can take meetings."
81
103
  ],
82
- "gender": "male"
104
+ "gender": "male",
105
+ "symbol": "💻",
106
+ "color": "#312e81",
107
+ "emailDomains": ["dunder-mifflin.com", "wuphf.com"]
83
108
  },
84
109
  {
85
110
  "id": "andy-bernard",
86
111
  "firstName": "Andy",
87
112
  "lastName": "Bernard",
88
113
  "usernames": ["nard_dog", "cornell_andy", "here_comes_treble"],
89
- "profession": "sales representative",
114
+ "profession": "Sales representative",
90
115
  "interests": ["a cappella", "Cornell University", "banjo", "anger management"],
91
116
  "quotes": [
92
117
  "I am the Nard Dog, and I am on the prowl.",
@@ -95,14 +120,17 @@
95
120
  "I do parkour.",
96
121
  "The most romantic present you can give a woman is a clock. Because you're giving her your time."
97
122
  ],
98
- "gender": "male"
123
+ "gender": "male",
124
+ "symbol": "🎵",
125
+ "color": "#475569",
126
+ "emailDomains": ["dunder-mifflin.com", "cornell-alumni.edu"]
99
127
  },
100
128
  {
101
129
  "id": "angela-martin",
102
130
  "firstName": "Angela",
103
131
  "lastName": "Martin",
104
132
  "usernames": ["cat_lady_angela", "head_of_accounting", "angela_the_strict"],
105
- "profession": "head of accounting",
133
+ "profession": "Head of accounting",
106
134
  "interests": ["cats", "church", "judging coworkers", "Dwight Schrute"],
107
135
  "quotes": [
108
136
  "I actually look forward to performance reviews. I did the youth beauty pageant circuit, and I enjoyed that quite a bit. I really enjoy being judged.",
@@ -111,14 +139,17 @@
111
139
  "I always imagined I'd have a traditional wedding. Nothing over the top. Maybe a church. Simple flowers. No clowns.",
112
140
  "I don't gossip. But I do hear things."
113
141
  ],
114
- "gender": "female"
142
+ "gender": "female",
143
+ "symbol": "🐱",
144
+ "color": "#dc2626",
145
+ "emailDomains": ["dunder-mifflin.com", "cat-fanciers.net"]
115
146
  },
116
147
  {
117
148
  "id": "kelly-kapoor",
118
149
  "firstName": "Kelly",
119
150
  "lastName": "Kapoor",
120
151
  "usernames": ["kelly_talks_alot", "ryan_and_kelly", "customer_service_queen"],
121
- "profession": "customer service representative",
152
+ "profession": "Customer service representative",
122
153
  "interests": ["Ryan Howard", "celebrity gossip", "fashion", "talking"],
123
154
  "quotes": [
124
155
  "I swallowed a tapeworm last night. It's going to grow up to three feet inside of me and it eats all my food so that I don't get fat.",
@@ -127,14 +158,17 @@
127
158
  "Ryan used me as an object. But I actually fell for him. Woops!",
128
159
  "I talk a lot. So I've learned to just tune myself out."
129
160
  ],
130
- "gender": "female"
161
+ "gender": "female",
162
+ "symbol": "💬",
163
+ "color": "#3b1f0a",
164
+ "emailDomains": ["dunder-mifflin.com", "ryan-and-kelly.net"]
131
165
  },
132
166
  {
133
167
  "id": "kevin-malone",
134
168
  "firstName": "Kevin",
135
169
  "lastName": "Malone",
136
170
  "usernames": ["kevin_the_turtle", "big_kev_m", "chili_kevin"],
137
- "profession": "accountant",
171
+ "profession": "Accountant",
138
172
  "interests": ["chili", "poker", "his band Scrantonicity", "food"],
139
173
  "quotes": [
140
174
  "Why waste time say lot word when few word do trick.",
@@ -143,14 +177,17 @@
143
177
  "I am a great cook. My famous chili is a closely guarded secret.",
144
178
  "Oscar is a great guy. I don't care what everyone says about him."
145
179
  ],
146
- "gender": "male"
180
+ "gender": "male",
181
+ "symbol": "🍲",
182
+ "color": "#854d0e",
183
+ "emailDomains": ["dunder-mifflin.com", "kevins-chili.net"]
147
184
  },
148
185
  {
149
186
  "id": "oscar-martinez",
150
187
  "firstName": "Oscar",
151
188
  "lastName": "Martinez",
152
189
  "usernames": ["actually_oscar", "oscar_the_accountant", "sensible_oscar"],
153
- "profession": "accountant",
190
+ "profession": "Accountant",
154
191
  "interests": ["politics", "art", "correcting people", "wine"],
155
192
  "quotes": [
156
193
  "That isn't ethics. Ethics is a real discussion of the competing conceptions of the good. This is just the corporate anti-shoplifting rules.",
@@ -159,14 +196,17 @@
159
196
  "I am gay, and I want to say to anyone watching this who is also gay: it gets better.",
160
197
  "I can't believe you let this happen. I am going to correct this. I am going to fix this."
161
198
  ],
162
- "gender": "male"
199
+ "gender": "male",
200
+ "symbol": "💡",
201
+ "color": "#1d4ed8",
202
+ "emailDomains": ["dunder-mifflin.com", "accounting-scranton.net"]
163
203
  },
164
204
  {
165
205
  "id": "darryl-philbin",
166
206
  "firstName": "Darryl",
167
207
  "lastName": "Philbin",
168
208
  "usernames": ["warehouse_darryl", "darryl_philbin", "darryl_from_the_warehouse"],
169
- "profession": "warehouse foreman",
209
+ "profession": "Warehouse foreman",
170
210
  "interests": ["music", "his daughter Jada", "basketball", "getting out of Scranton"],
171
211
  "quotes": [
172
212
  "I taught Mike some phrases to help with his business. Fluffy fingers, that's when a fellow is being extra sweet to someone. Pippity poppity, give me the zoppity. That means, please, sir, I'd like the report.",
@@ -175,14 +215,17 @@
175
215
  "I'm not going to beg to be taken seriously as a musician. I'm just going to keep making music and let it speak for itself.",
176
216
  "The Foreman's grille: the foreman being me."
177
217
  ],
178
- "gender": "male"
218
+ "gender": "male",
219
+ "symbol": "🎧",
220
+ "color": "#312e81",
221
+ "emailDomains": ["dunder-mifflin.com", "athlead.net"]
179
222
  },
180
223
  {
181
224
  "id": "stanley-hudson",
182
225
  "firstName": "Stanley",
183
226
  "lastName": "Hudson",
184
227
  "usernames": ["stanley_pretzel", "florida_stan", "did_i_stutter"],
185
- "profession": "sales representative",
228
+ "profession": "Sales representative",
186
229
  "interests": ["pretzel day", "Florida", "crossword puzzles", "retirement"],
187
230
  "quotes": [
188
231
  "Did I stutter?",
@@ -191,14 +234,17 @@
191
234
  "I do not apologize unless I think I'm wrong, and if you don't like it you can leave.",
192
235
  "This is the worst thing that's ever happened to me, and I was on a Real Housewives episode."
193
236
  ],
194
- "gender": "male"
237
+ "gender": "male",
238
+ "symbol": "🥨",
239
+ "color": "#083344",
240
+ "emailDomains": ["dunder-mifflin.com", "florida-retirement.net"]
195
241
  },
196
242
  {
197
243
  "id": "creed-bratton",
198
244
  "firstName": "Creed",
199
245
  "lastName": "Bratton",
200
246
  "usernames": ["nobody_steals_from_creed", "creed_thoughts", "quality_assurance"],
201
- "profession": "quality assurance director",
247
+ "profession": "Quality assurance director",
202
248
  "interests": ["his past", "schemes", "counterfeiting", "mung beans"],
203
249
  "quotes": [
204
250
  "Nobody steals from Creed Bratton and gets away with it. The last person to do this disappeared. His name: Creed Bratton.",
@@ -207,7 +253,10 @@
207
253
  "I've been involved in a number of cults, both as a leader and a follower. You have more fun as a follower, but you make more money as a leader.",
208
254
  "I already won the lottery. I was born in the US of A, baby."
209
255
  ],
210
- "gender": "male"
256
+ "gender": "male",
257
+ "symbol": "👻",
258
+ "color": "#9333ea",
259
+ "emailDomains": ["dunder-mifflin.com", "nobody-knows-creed.net"]
211
260
  },
212
261
  {
213
262
  "id": "toby-flenderson",
@@ -223,14 +272,17 @@
223
272
  "I'm not a part of this family. I'm HR, which means I work for corporate.",
224
273
  "This meeting is a waste of time."
225
274
  ],
226
- "gender": "male"
275
+ "gender": "male",
276
+ "symbol": "🗂️",
277
+ "color": "#3b1f0a",
278
+ "emailDomains": ["dunder-mifflin.com", "hr-scranton.net"]
227
279
  },
228
280
  {
229
281
  "id": "phyllis-vance",
230
282
  "firstName": "Phyllis",
231
283
  "lastName": "Vance",
232
284
  "usernames": ["phyllis_from_sales", "vance_refrigeration", "bob_vances_wife"],
233
- "profession": "sales representative",
285
+ "profession": "Sales representative",
234
286
  "interests": ["knitting", "Bob Vance", "gossip", "Vance Refrigeration"],
235
287
  "quotes": [
236
288
  "I'm a pretty private person. I don't like to talk about my personal life.",
@@ -239,6 +291,9 @@
239
291
  "Bob Vance, Vance Refrigeration.",
240
292
  "I feel like I've been here before in a past life."
241
293
  ],
242
- "gender": "female"
294
+ "gender": "female",
295
+ "symbol": "🧶",
296
+ "color": "#312e81",
297
+ "emailDomains": ["dunder-mifflin.com", "vance-refrigeration.com"]
243
298
  }
244
299
  ]
@@ -1,4 +1,13 @@
1
1
  {
2
2
  "id": "the-office",
3
- "name": "The Office"
3
+ "name": "The Office",
4
+ "genre": ["comedy", "mockumentary"],
5
+ "description": "A mockumentary following the mundane daily lives of employees at a Scranton, Pennsylvania paper company managed by an oblivious boss.",
6
+ "tmdbId": 2316,
7
+ "mediaType": "tv",
8
+ "year": 2005,
9
+ "rating": 8.6,
10
+ "networks": ["NBC"],
11
+ "posterPath": "/7DJKHzAi83BmQrWLrYYOqcoKfhR.jpg",
12
+ "backdropPath": "/mLyW3UTgi2lsMdtueYODcfAB9Ku.jpg"
4
13
  }
@@ -0,0 +1,25 @@
1
+ [
2
+ {
3
+ "city": "King County",
4
+ "state": "GA",
5
+ "country": "US"
6
+ },
7
+ {
8
+ "city": "Atlanta",
9
+ "state": "GA",
10
+ "country": "US"
11
+ },
12
+ {
13
+ "city": "West Georgia Correctional Facility",
14
+ "state": "GA"
15
+ },
16
+ {
17
+ "city": "Alexandria",
18
+ "state": "VA",
19
+ "country": "US"
20
+ },
21
+ {
22
+ "city": "Hilltop Colony",
23
+ "state": "VA"
24
+ }
25
+ ]
@@ -0,0 +1,114 @@
1
+ [
2
+ {
3
+ "id": "rick-grimes",
4
+ "firstName": "Rick",
5
+ "lastName": "Grimes",
6
+ "usernames": ["officer_friendly", "coral_dad", "not_a_democracy"],
7
+ "profession": "Sheriff",
8
+ "interests": ["farming", "family", "justice", "law enforcement"],
9
+ "quotes": [
10
+ "We are the walking dead.",
11
+ "You're staying, this isn't a democracy anymore.",
12
+ "We can still come back. We're not too far gone. We get to come back. I know we all can change.",
13
+ "They're screwin' with the wrong people.",
14
+ "We're the ones who live. You, you just sit and plan and hesitate."
15
+ ],
16
+ "gender": "male",
17
+ "symbol": "⭐",
18
+ "color": "#7f1d1d",
19
+ "emailDomains": ["alexandria-safe-zone.net", "georgia-survivors.net"]
20
+ },
21
+ {
22
+ "id": "daryl-dixon",
23
+ "firstName": "Daryl",
24
+ "lastName": "Dixon",
25
+ "usernames": ["crossbow_rider", "angel_wings", "cherokee_rose"],
26
+ "profession": "Hunter",
27
+ "interests": ["hunting", "motorcycles", "survival", "tracking"],
28
+ "quotes": [
29
+ "We ain't them. We're not them.",
30
+ "Yeah, you used to be somebody's, huh? Now you're just yours.",
31
+ "I'm tryin'.",
32
+ "Some days, I don't know what the hell to think.",
33
+ "Sorry, brother."
34
+ ],
35
+ "gender": "male",
36
+ "symbol": "🏹",
37
+ "color": "#4a3728",
38
+ "emailDomains": ["georgia-survivors.net", "alexandria-safe-zone.net"]
39
+ },
40
+ {
41
+ "id": "negan",
42
+ "firstName": "Negan",
43
+ "usernames": ["pee_pants_city", "lucille_swings", "eeny_meeny"],
44
+ "profession": "Warlord",
45
+ "interests": ["power", "whistling", "Lucille", "rules", "survival"],
46
+ "quotes": [
47
+ "You are so gonna regret crossing me in a few minutes.",
48
+ "I simply cannot decide. I got an idea.",
49
+ "I don't wanna kill you people. Just wanna make that clear from the get go.",
50
+ "You work for me now. You have shit, you give it to me; that's your job.",
51
+ "You don't mess with the New World Order."
52
+ ],
53
+ "gender": "male",
54
+ "symbol": "⚾",
55
+ "color": "#7f1d1d",
56
+ "emailDomains": ["the-saviors.net", "sanctuary-hq.com"]
57
+ },
58
+ {
59
+ "id": "michonne",
60
+ "firstName": "Michonne",
61
+ "usernames": ["pet_walkers", "just_another_monster", "andre_mom"],
62
+ "profession": "Warrior",
63
+ "interests": ["survival", "art", "justice", "community"],
64
+ "quotes": [
65
+ "They deserve what they got. They weren't human to begin with.",
66
+ "I made it so they couldn't bite, couldn't scratch. I tied chains around their necks. It was insane. It was sick. It felt like what I deserved.",
67
+ "I was just another monster.",
68
+ "He's already given me fleas.",
69
+ "I had a three-year-old son and he happened to find me extremely funny."
70
+ ],
71
+ "gender": "female",
72
+ "symbol": "⚔️",
73
+ "color": "#1e3a5f",
74
+ "emailDomains": ["alexandria-safe-zone.net", "georgia-survivors.net"]
75
+ },
76
+ {
77
+ "id": "carol-peletier",
78
+ "firstName": "Carol",
79
+ "lastName": "Peletier",
80
+ "usernames": ["cookie_lady", "look_at_flowers", "oh_sunshine"],
81
+ "profession": "Survivor",
82
+ "interests": ["baking", "strategy", "marksmanship", "protecting the group"],
83
+ "quotes": [
84
+ "You can never tell anyone, especially your mom.",
85
+ "I don't know if I believe in God anymore or heaven, but if I'm going to hell, I'm making damn sure I'm holding it off as long as I can.",
86
+ "I don't think we get to save people anymore.",
87
+ "Oh, sunshine, you don't get both.",
88
+ "I could kill you right now. I could. I will."
89
+ ],
90
+ "gender": "female",
91
+ "symbol": "🍪",
92
+ "color": "#166534",
93
+ "emailDomains": ["alexandria-safe-zone.net", "georgia-survivors.net"]
94
+ },
95
+ {
96
+ "id": "glenn-rhee",
97
+ "firstName": "Glenn",
98
+ "lastName": "Rhee",
99
+ "usernames": ["dumpster_survivor", "pizza_delivery", "cozy_in_there"],
100
+ "profession": "Delivery driver",
101
+ "interests": ["scavenging", "supply runs", "cars", "community"],
102
+ "quotes": [
103
+ "Hey, you. Dumbass. Hey, you in the tank. Cozy in there?",
104
+ "Nice moves there, Clint Eastwood. You the new sheriff come riding in to clean up the town?",
105
+ "I'm supposed to be delivering pizzas, man.",
106
+ "Hey, we can make it together. But we can only make it together.",
107
+ "People you love, they made you who you are. They're still part of you. If you stop being you, that last bit of them that's still around inside, who you are, it's gone."
108
+ ],
109
+ "gender": "male",
110
+ "symbol": "🍕",
111
+ "color": "#1e3a5f",
112
+ "emailDomains": ["georgia-survivors.net", "alexandria-safe-zone.net"]
113
+ }
114
+ ]
@@ -0,0 +1,13 @@
1
+ {
2
+ "id": "the-walking-dead",
3
+ "name": "The Walking Dead",
4
+ "genre": ["horror", "drama", "thriller"],
5
+ "description": "Survivors navigate a post-apocalyptic world overrun by zombies, struggling to maintain their humanity while building new communities.",
6
+ "tmdbId": 1402,
7
+ "mediaType": "tv",
8
+ "year": 2010,
9
+ "rating": 8.1,
10
+ "networks": ["AMC"],
11
+ "posterPath": "/s3OIDrCErUjthsnPPreY7XktQXB.jpg",
12
+ "backdropPath": "/rAOjnEFTuNysY7bot8zonhImGMh.jpg"
13
+ }
@@ -0,0 +1,19 @@
1
+ [
2
+ {
3
+ "city": "Sweetwater"
4
+ },
5
+ {
6
+ "city": "Mesa Hub"
7
+ },
8
+ {
9
+ "city": "Shogun World"
10
+ },
11
+ {
12
+ "city": "The Raj"
13
+ },
14
+ {
15
+ "city": "Los Angeles",
16
+ "state": "CA",
17
+ "country": "US"
18
+ }
19
+ ]