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,230 @@
1
+ [
2
+ {
3
+ "id": "eric-cartman",
4
+ "firstName": "Eric",
5
+ "lastName": "Cartman",
6
+ "usernames": ["respect_my_authoritah", "screw_you_guys", "cartmanland", "big_boned_not_fat"],
7
+ "profession": "Student",
8
+ "interests": ["KFC", "television", "theme parks", "politics", "religion"],
9
+ "quotes": [
10
+ "Respect my authoritah!",
11
+ "Screw you guys, I'm going home.",
12
+ "I'm not fat, I'm big-boned.",
13
+ "Whatever! I do what I want!",
14
+ "There's nothing faggy about ten million dollars, asshole!"
15
+ ],
16
+ "gender": "male",
17
+ "address": {
18
+ "street": "Bonanza Street",
19
+ "city": "South Park",
20
+ "state": "CO",
21
+ "country": "US"
22
+ },
23
+ "symbol": "🍗",
24
+ "color": "#1e3a5f",
25
+ "emailDomains": ["south-park-school.edu", "cartman-enterprises.com"]
26
+ },
27
+ {
28
+ "id": "stan-marsh",
29
+ "firstName": "Stan",
30
+ "lastName": "Marsh",
31
+ "usernames": ["dude_seriously", "vomits_on_wendy", "learned_something_today"],
32
+ "profession": "Student",
33
+ "interests": ["football", "music", "environmentalism", "animal rights"],
34
+ "quotes": [
35
+ "You know, I think I've learned something today.",
36
+ "Oh my God, they killed Kenny!",
37
+ "Dude, don't you have enough? I mean, at some point, can't you just kind of fuck off?",
38
+ "Jesus, dude!"
39
+ ],
40
+ "gender": "male",
41
+ "address": {
42
+ "street": "Bonanza Street",
43
+ "city": "South Park",
44
+ "state": "CO",
45
+ "country": "US"
46
+ },
47
+ "symbol": "⭐",
48
+ "color": "#166534",
49
+ "emailDomains": ["south-park-school.edu", "colorado-mail.net"]
50
+ },
51
+ {
52
+ "id": "kyle-broflovski",
53
+ "firstName": "Kyle",
54
+ "lastName": "Broflovski",
55
+ "usernames": ["kyle_the_jew", "super_kyle", "green_ushanka"],
56
+ "profession": "Student",
57
+ "interests": ["basketball", "Judaism", "video games", "debate", "charity"],
58
+ "quotes": [
59
+ "You bastards!",
60
+ "Oh my God, they killed Kenny! You bastards!",
61
+ "You know, I've learned something today.",
62
+ "Dude, you have sex with children!",
63
+ "I think it might be best for us to never piss Cartman off again."
64
+ ],
65
+ "gender": "male",
66
+ "address": {
67
+ "street": "1002 Avenue de los Mexicanos",
68
+ "city": "South Park",
69
+ "state": "CO",
70
+ "country": "US"
71
+ },
72
+ "symbol": "🏀",
73
+ "color": "#7f1d1d",
74
+ "emailDomains": ["south-park-school.edu", "colorado-mail.net"]
75
+ },
76
+ {
77
+ "id": "kenny-mccormick",
78
+ "firstName": "Kenny",
79
+ "lastName": "McCormick",
80
+ "usernames": ["poor_kenny", "immortal_kenny", "muffled_voice"],
81
+ "profession": "Student",
82
+ "interests": ["pornography", "weapons", "motorcycles", "girls"],
83
+ "quotes": [
84
+ "Mmph mmph mmph mmph mmph.",
85
+ "Mmmph!",
86
+ "Mm mm mmph mmph.",
87
+ "Mm mmm mmph.",
88
+ "Mmmm mm mm mmph mmph mmph."
89
+ ],
90
+ "gender": "male",
91
+ "address": { "city": "South Park", "state": "CO", "country": "US" },
92
+ "symbol": "🧡",
93
+ "color": "#4a1942",
94
+ "emailDomains": ["south-park-school.edu", "colorado-mail.net"]
95
+ },
96
+ {
97
+ "id": "butters-stotch",
98
+ "firstName": "Leopold",
99
+ "lastName": "Stotch",
100
+ "usernames": ["professor_chaos", "lil_butters", "oh_hamburgers"],
101
+ "profession": "Student",
102
+ "interests": ["dancing", "singing", "cooking", "theater"],
103
+ "quotes": [
104
+ "Well, yeah, and I'm sad, but at the same time I'm really happy that something could make me feel that sad.",
105
+ "Oh hamburgers.",
106
+ "I'm Professor Chaos!",
107
+ "Aww, that's a bummer.",
108
+ "Gee, I dunno.",
109
+ "I got a whole life ahead of me."
110
+ ],
111
+ "gender": "male",
112
+ "address": { "city": "South Park", "state": "CO", "country": "US" },
113
+ "symbol": "🦋",
114
+ "color": "#1d4ed8",
115
+ "emailDomains": ["south-park-school.edu", "colorado-mail.net"]
116
+ },
117
+ {
118
+ "id": "randy-marsh",
119
+ "firstName": "Randy",
120
+ "lastName": "Marsh",
121
+ "usernames": ["tegridy_farms", "this_is_america", "lorde_randy"],
122
+ "profession": "Geologist",
123
+ "interests": ["wine", "marijuana", "sports", "cooking", "farming"],
124
+ "quotes": [
125
+ "I thought this was America!",
126
+ "We need Tegridy.",
127
+ "You think I'm just gonna stand around while they destroy my family?! We've worked this farm and this land for over four days!",
128
+ "I've had it — school shootings, pieces of shit taking Ambien and tweeting, priests raping kids, and somehow... I'm not laughing anymore.",
129
+ "Go back to simple living when things mattered, like work hard and tegridy."
130
+ ],
131
+ "gender": "male",
132
+ "symbol": "🌿",
133
+ "color": "#166534",
134
+ "emailDomains": ["colorado-geology.edu", "south-park-school.edu"]
135
+ },
136
+ {
137
+ "id": "chef",
138
+ "firstName": "Jerome",
139
+ "lastName": "McElroy",
140
+ "usernames": ["salty_chocolate_balls", "hello_there_children", "time_and_place"],
141
+ "profession": "Chef",
142
+ "interests": ["cooking", "music", "women", "soul food"],
143
+ "quotes": [
144
+ "Hello there, children!",
145
+ "There's a time and a place for everything, and it's called college.",
146
+ "Sometimes God takes those closest to us, because it makes him feel better about himself.",
147
+ "Dagnabbit children! How come every time you come in here, you gotta be asking me questions that I shouldn't be answering?!",
148
+ "You're damn right."
149
+ ],
150
+ "gender": "male",
151
+ "symbol": "🎵",
152
+ "color": "#7f1d1d",
153
+ "emailDomains": ["south-park-school.edu", "cafeteria-chef.net"]
154
+ },
155
+ {
156
+ "id": "mr-garrison",
157
+ "firstName": "Herbert",
158
+ "lastName": "Garrison",
159
+ "usernames": ["ms_garrison", "go_to_hell_and_die", "mr_hat_says"],
160
+ "profession": "Teacher",
161
+ "interests": ["politics", "ventriloquism", "writing", "gender studies"],
162
+ "quotes": [
163
+ "You go to hell! You go to hell and you die!",
164
+ "Gay people are evil, right down to their cold black hearts which pump not blood like yours or mine, but rather a thick, vomitous oil.",
165
+ "Sat through that entire movie to see the alien, and it was her God damn father!",
166
+ "I did not want love from a young boy! I like men my own age. Ah! I mean, I like women! Ah! What did I just say?!"
167
+ ],
168
+ "gender": "male",
169
+ "symbol": "🎭",
170
+ "color": "#4a6fa5",
171
+ "emailDomains": ["south-park-school.edu", "colorado-mail.net"]
172
+ },
173
+ {
174
+ "id": "mr-mackey",
175
+ "firstName": "Mr.",
176
+ "lastName": "Mackey",
177
+ "usernames": ["drugs_are_bad", "mkay_counselor", "dook_in_urinal"],
178
+ "profession": "School counselor",
179
+ "interests": ["drug prevention", "collecting junk", "motivational speaking"],
180
+ "quotes": [
181
+ "Drugs are bad, m'kay.",
182
+ "M'kay?",
183
+ "Now, we need to discuss some things, m'kay.",
184
+ "That's bad, m'kay.",
185
+ "When you dook in the urinal, it's bad, m'kay?"
186
+ ],
187
+ "gender": "male",
188
+ "symbol": "📋",
189
+ "color": "#1e3a5f",
190
+ "emailDomains": ["south-park-school.edu", "colorado-counseling.net"]
191
+ },
192
+ {
193
+ "id": "tweek-tweak",
194
+ "firstName": "Tweek",
195
+ "lastName": "Tweak",
196
+ "usernames": ["too_much_pressure", "tweek_coffee", "gnomes_got_me"],
197
+ "profession": "Student",
198
+ "interests": ["coffee", "underpants gnomes", "electricity"],
199
+ "quotes": [
200
+ "Too much pressure!",
201
+ "Aaaagh!",
202
+ "I can't take this pressure much longer!",
203
+ "Coffee. I need more coffee.",
204
+ "The underpants gnomes are real, dude!"
205
+ ],
206
+ "gender": "male",
207
+ "symbol": "☕",
208
+ "color": "#4a1942",
209
+ "emailDomains": ["tweak-coffee.com", "south-park-school.edu"]
210
+ },
211
+ {
212
+ "id": "craig-tucker",
213
+ "firstName": "Craig",
214
+ "lastName": "Tucker",
215
+ "usernames": ["craig_the_flicker", "guinea_pig_owner", "i_dont_care"],
216
+ "profession": "Student",
217
+ "interests": ["guinea pigs", "cable television", "Peru", "flipping people off"],
218
+ "quotes": [
219
+ "I hate you guys.",
220
+ "Whatever.",
221
+ "I don't care.",
222
+ "This is stupid.",
223
+ "I'm going home."
224
+ ],
225
+ "gender": "male",
226
+ "symbol": "🐹",
227
+ "color": "#166534",
228
+ "emailDomains": ["south-park-school.edu", "colorado-mail.net"]
229
+ }
230
+ ]
@@ -0,0 +1,13 @@
1
+ {
2
+ "id": "south-park",
3
+ "name": "South Park",
4
+ "genre": ["animation", "comedy", "satire"],
5
+ "description": "Four foul-mouthed third-graders in a small Colorado mountain town stumble through absurd adventures that skewer politics, religion, and pop culture.",
6
+ "tmdbId": 2190,
7
+ "mediaType": "tv",
8
+ "year": 1997,
9
+ "rating": 8.3,
10
+ "networks": ["Comedy Central"],
11
+ "posterPath": "/1CGwZCFX2qerXaXQJJUB3qUvxq7.jpg",
12
+ "backdropPath": "/3UviYOlhn8EgXMBuiT6MnUuo1w9.jpg"
13
+ }
@@ -0,0 +1,31 @@
1
+ [
2
+ {
3
+ "city": "Queens",
4
+ "state": "NY",
5
+ "country": "US"
6
+ },
7
+ {
8
+ "street": "Midtown School of Science and Technology",
9
+ "city": "New York",
10
+ "state": "NY",
11
+ "country": "US"
12
+ },
13
+ {
14
+ "street": "177A Bleecker Street",
15
+ "city": "New York",
16
+ "state": "NY",
17
+ "zip": "10012",
18
+ "country": "US"
19
+ },
20
+ {
21
+ "city": "Manhattan",
22
+ "state": "NY",
23
+ "country": "US"
24
+ },
25
+ {
26
+ "street": "Statue of Liberty",
27
+ "city": "New York",
28
+ "state": "NY",
29
+ "country": "US"
30
+ }
31
+ ]
@@ -0,0 +1,134 @@
1
+ [
2
+ {
3
+ "id": "peter-parker",
4
+ "firstName": "Peter",
5
+ "lastName": "Parker",
6
+ "usernames": ["friendly_neighborhood", "webhead", "parker_luck"],
7
+ "profession": "Student",
8
+ "interests": ["science", "decathlon", "photography", "engineering"],
9
+ "quotes": [
10
+ "I just wanted to be like you.",
11
+ "I'm nothing without this suit.",
12
+ "I'm just a friendly neighborhood Spider-Man.",
13
+ "For the record, I never wanted to lie to you.",
14
+ "No... I just want to kill you myself."
15
+ ],
16
+ "gender": "male",
17
+ "address": { "city": "Queens", "state": "NY", "country": "US" },
18
+ "symbol": "🕷️",
19
+ "color": "#1e3a5f",
20
+ "emailDomains": ["midtown-tech.edu", "daily-bugle.com"]
21
+ },
22
+ {
23
+ "id": "michelle-jones",
24
+ "firstName": "MJ",
25
+ "lastName": "Jones-Watson",
26
+ "usernames": ["just_observant", "if_you_expect_disappointment", "building_sketcher"],
27
+ "profession": "Student",
28
+ "interests": ["reading", "sketching", "activism", "true crime"],
29
+ "quotes": [
30
+ "I'm not obsessed with him. I'm just very observant.",
31
+ "If you expect disappointment, then you can never really get disappointed.",
32
+ "I have a few magic words myself. Starting with the word please."
33
+ ],
34
+ "gender": "female",
35
+ "symbol": "📓",
36
+ "color": "#6b2142",
37
+ "emailDomains": ["midtown-tech.edu", "nyc-mail.net"]
38
+ },
39
+ {
40
+ "id": "ned-leeds",
41
+ "firstName": "Ned",
42
+ "lastName": "Leeds",
43
+ "usernames": ["guy_in_the_chair", "lego_master_ned", "hat_man"],
44
+ "profession": "Student",
45
+ "interests": ["computers", "Lego", "Star Wars", "hacking"],
46
+ "quotes": [
47
+ "I'm the guy in the chair!",
48
+ "We should probably stop staring before it gets creepy, though.",
49
+ "Can you spit venom?",
50
+ "Do you lay eggs?",
51
+ "Dude, you're the Spider-Man! From YouTube!"
52
+ ],
53
+ "gender": "male",
54
+ "symbol": "🪑",
55
+ "color": "#1d4ed8",
56
+ "emailDomains": ["midtown-tech.edu", "nyc-mail.net"]
57
+ },
58
+ {
59
+ "id": "happy-hogan",
60
+ "firstName": "Happy",
61
+ "lastName": "Hogan",
62
+ "usernames": ["forehead_of_security", "downton_fan", "not_a_chauffeur"],
63
+ "profession": "Head of security",
64
+ "interests": ["security", "boxing", "management", "Downton Abbey"],
65
+ "quotes": [
66
+ "Forehead of Security.",
67
+ "You're all alone. Your friends are in trouble. What are you gonna do about it?",
68
+ "I'm in charge of this operation!",
69
+ "I don't think Tony would've done what he did if he didn't know you were gonna be here after he was gone.",
70
+ "Everyone needs a hobby."
71
+ ],
72
+ "gender": "male",
73
+ "symbol": "🥊",
74
+ "color": "#4a1942",
75
+ "emailDomains": ["stark-industries.com", "pepper-security.net"]
76
+ },
77
+ {
78
+ "id": "adrian-toomes",
79
+ "firstName": "Adrian",
80
+ "lastName": "Toomes",
81
+ "usernames": ["vulture_salvage", "one_chance_walk_away", "salvage_king"],
82
+ "profession": "Salvage contractor",
83
+ "interests": ["engineering", "family", "alien technology", "business"],
84
+ "quotes": [
85
+ "The rich and the powerful, they don't care about us.",
86
+ "How do you think your daughter would feel about that?",
87
+ "I want you to understand that I will kill you and everybody you love.",
88
+ "Things are never gonna be the same now. I'm gonna hold on to what I've got.",
89
+ "I'll give you one chance. Walk away."
90
+ ],
91
+ "gender": "male",
92
+ "symbol": "🦅",
93
+ "color": "#166534",
94
+ "emailDomains": ["toomes-salvage.com", "vulture-tech.net"]
95
+ },
96
+ {
97
+ "id": "quentin-beck",
98
+ "firstName": "Quentin",
99
+ "lastName": "Beck",
100
+ "usernames": ["mysterio_fx", "fishbowl_king", "believe_anything"],
101
+ "profession": "Special effects designer",
102
+ "interests": ["illusions", "holography", "acting", "revenge"],
103
+ "quotes": [
104
+ "People need to believe. And nowadays, they'll believe anything.",
105
+ "You don't want any part of this.",
106
+ "It's easy to fool people when they're already fooling themselves.",
107
+ "I control the truth. Mysterio is the truth!",
108
+ "See, that wasn't so hard."
109
+ ],
110
+ "gender": "male",
111
+ "symbol": "🔮",
112
+ "color": "#1e3a5f",
113
+ "emailDomains": ["stark-industries.com", "sfx-guild.net"]
114
+ },
115
+ {
116
+ "id": "stephen-strange",
117
+ "firstName": "Stephen",
118
+ "lastName": "Strange",
119
+ "usernames": ["sorcerer_supreme", "wong_was_right", "no_way_home"],
120
+ "profession": "Sorcerer",
121
+ "interests": ["magic", "medicine", "multiversal theory", "neurosurgery"],
122
+ "quotes": [
123
+ "The problem is you trying to live two different lives.",
124
+ "Be careful what you wish for, Parker.",
125
+ "The entire world is about to forget that Peter Parker is Spider-Man.",
126
+ "We tampered with the stability of spacetime.",
127
+ "Go home, Parker. You're done."
128
+ ],
129
+ "gender": "male",
130
+ "symbol": "✨",
131
+ "color": "#7f1d1d",
132
+ "emailDomains": ["sanctum-sanctorum.net", "kamar-taj.org"]
133
+ }
134
+ ]
@@ -0,0 +1,13 @@
1
+ {
2
+ "id": "spider-man",
3
+ "name": "Spider-Man",
4
+ "genre": ["action", "adventure", "sci-fi"],
5
+ "description": "A teenager from Queens gains spider-like abilities and struggles to balance high school life with fighting crime as a masked vigilante.",
6
+ "tmdbId": 634649,
7
+ "mediaType": "movie",
8
+ "year": 2021,
9
+ "rating": 7.9,
10
+ "networks": ["Marvel Studios", "Pascal Pictures", "Columbia Pictures"],
11
+ "posterPath": "/1g0dhYtq4irTY1GPXvft6k4YLjm.jpg",
12
+ "backdropPath": "/zD5v1E4joAzFvmAEytt7fM3ivyT.jpg"
13
+ }
@@ -0,0 +1,19 @@
1
+ [
2
+ {
3
+ "city": "Tatooine"
4
+ },
5
+ {
6
+ "city": "Coruscant"
7
+ },
8
+ {
9
+ "city": "Hoth"
10
+ },
11
+ {
12
+ "street": "Cloud City",
13
+ "city": "Bespin"
14
+ },
15
+ {
16
+ "street": "Mos Eisley",
17
+ "city": "Tatooine"
18
+ }
19
+ ]
@@ -0,0 +1,153 @@
1
+ [
2
+ {
3
+ "id": "luke-skywalker",
4
+ "firstName": "Luke",
5
+ "lastName": "Skywalker",
6
+ "usernames": ["last_jedi", "tatooine_farm_boy", "bulls_eye_womprat"],
7
+ "profession": "Pilot",
8
+ "interests": ["flying", "lightsaber training", "rebellion", "droids", "moisture farming"],
9
+ "quotes": [
10
+ "I am a Jedi, like my father before me.",
11
+ "I'll never join you!",
12
+ "The Force is strong in my family.",
13
+ "I will not fight you, Father.",
14
+ "May the Force be with you."
15
+ ],
16
+ "gender": "male",
17
+ "symbol": "💚",
18
+ "color": "#1e3a5f",
19
+ "emailDomains": ["rebel-alliance.net", "jedi-order.org"]
20
+ },
21
+ {
22
+ "id": "darth-vader",
23
+ "firstName": "Darth",
24
+ "lastName": "Vader",
25
+ "usernames": ["i_find_your_lack", "no_i_am_your_father", "heavy_breathing"],
26
+ "profession": "Commander",
27
+ "interests": ["military tactics", "the Empire", "interrogation", "engineering"],
28
+ "quotes": [
29
+ "I am your father.",
30
+ "The Force is strong with this one.",
31
+ "There is no escape. Don't make me destroy you.",
32
+ "Luke, you can destroy the Emperor. He has foreseen this. It is your destiny. Join me, and together we can rule the galaxy as father and son.",
33
+ "I find your lack of faith disturbing."
34
+ ],
35
+ "gender": "male",
36
+ "symbol": "🌑",
37
+ "color": "#7f1d1d",
38
+ "emailDomains": ["galactic-empire.com", "sith-order.net"]
39
+ },
40
+ {
41
+ "id": "han-solo",
42
+ "firstName": "Han",
43
+ "lastName": "Solo",
44
+ "usernames": ["millennium_falcon", "nerf_herder", "never_tell_odds"],
45
+ "profession": "Smuggler",
46
+ "interests": ["smuggling", "flying", "gambling", "sabacc", "starship mechanics"],
47
+ "quotes": [
48
+ "Never tell me the odds.",
49
+ "I know.",
50
+ "Punch it.",
51
+ "Hokey religions and ancient weapons are no match for a good blaster at your side, kid.",
52
+ "You know, sometimes I amaze even myself."
53
+ ],
54
+ "gender": "male",
55
+ "symbol": "🚀",
56
+ "color": "#166534",
57
+ "emailDomains": ["rebel-alliance.net", "corellian-post.net"]
58
+ },
59
+ {
60
+ "id": "leia-organa",
61
+ "firstName": "Leia",
62
+ "lastName": "Organa",
63
+ "usernames": ["into_the_garbage", "buns_of_alderaan", "tighten_your_grip"],
64
+ "profession": "Senator",
65
+ "interests": ["rebellion", "diplomacy", "leadership", "freedom"],
66
+ "quotes": [
67
+ "Help me, Obi-Wan Kenobi. You're my only hope.",
68
+ "Will somebody get this walking carpet out of my way?!",
69
+ "Aren't you a little short for a stormtrooper?",
70
+ "The more you tighten your grip, Tarkin, the more star systems will slip through your fingers.",
71
+ "Why you stuck-up, half-witted, scruffy-looking, nerf herder!"
72
+ ],
73
+ "gender": "female",
74
+ "symbol": "🕊️",
75
+ "color": "#4a1942",
76
+ "emailDomains": ["rebel-alliance.net", "alderaan-senate.gov"]
77
+ },
78
+ {
79
+ "id": "yoda",
80
+ "firstName": "Yoda",
81
+ "usernames": ["do_or_do_not", "nine_hundred_years", "luminous_being"],
82
+ "profession": "Jedi Master",
83
+ "interests": ["Force philosophy", "cooking", "training", "the Jedi Order", "meditation"],
84
+ "quotes": [
85
+ "Do or do not. There is no try.",
86
+ "Fear is the path to the dark side.",
87
+ "Wars not make one great.",
88
+ "When nine hundred years old you reach, look as good you will not.",
89
+ "Luminous beings are we, not this crude matter."
90
+ ],
91
+ "gender": "male",
92
+ "symbol": "🌿",
93
+ "color": "#166534",
94
+ "emailDomains": ["jedi-order.org", "dagobah-exile.net"]
95
+ },
96
+ {
97
+ "id": "obi-wan-kenobi",
98
+ "firstName": "Obi-Wan",
99
+ "lastName": "Kenobi",
100
+ "usernames": ["hello_there", "old_ben", "the_high_ground"],
101
+ "profession": "Jedi Knight",
102
+ "interests": ["lightsaber combat", "training", "negotiation", "the Republic", "philosophy"],
103
+ "quotes": [
104
+ "These aren't the droids you're looking for.",
105
+ "Hello there.",
106
+ "Use the Force, Luke.",
107
+ "In my experience, there is no such thing as luck.",
108
+ "You were my brother, Anakin! I loved you!"
109
+ ],
110
+ "gender": "male",
111
+ "symbol": "⚔️",
112
+ "color": "#1e3a5f",
113
+ "emailDomains": ["jedi-order.org", "tatooine-exile.net"]
114
+ },
115
+ {
116
+ "id": "emperor-palpatine",
117
+ "firstName": "Sheev",
118
+ "lastName": "Palpatine",
119
+ "usernames": ["unlimited_power", "senate_is_me", "order_66"],
120
+ "profession": "Emperor",
121
+ "interests": [
122
+ "senate procedure",
123
+ "the dark side",
124
+ "Sith alchemy",
125
+ "the Sith",
126
+ "political scheming"
127
+ ],
128
+ "quotes": [
129
+ "Now, young Skywalker, you will die.",
130
+ "Everything is proceeding as I have foreseen.",
131
+ "Good. I can feel your anger.",
132
+ "Your feeble skills are no match for the power of the dark side.",
133
+ "Do it.",
134
+ "I am the Senate."
135
+ ],
136
+ "gender": "male",
137
+ "symbol": "🌩️",
138
+ "color": "#2d1b69",
139
+ "emailDomains": ["galactic-empire.com", "sith-order.net"]
140
+ },
141
+ {
142
+ "id": "chewbacca",
143
+ "firstName": "Chewbacca",
144
+ "usernames": ["walking_carpet", "twelve_parsecs", "life_debt_paid"],
145
+ "profession": "Co-pilot",
146
+ "interests": ["the Millennium Falcon", "dejarik", "Wookiee culture", "mechanics"],
147
+ "quotes": ["Aaaargh!", "Rrraaawwwr!", "Wuaaaah!", "Hrraaah!", "Rrwwgg!"],
148
+ "gender": "male",
149
+ "symbol": "🐻",
150
+ "color": "#4a3728",
151
+ "emailDomains": ["millennium-falcon.net", "kashyyyk-mail.net"]
152
+ }
153
+ ]
@@ -0,0 +1,13 @@
1
+ {
2
+ "id": "star-wars",
3
+ "name": "Star Wars",
4
+ "genre": ["science fiction", "action", "adventure"],
5
+ "description": "An epic space opera saga following the eternal struggle between the Jedi and the Sith across a galaxy far, far away.",
6
+ "tmdbId": 11,
7
+ "mediaType": "movie",
8
+ "year": 1977,
9
+ "rating": 8.2,
10
+ "networks": ["Lucasfilm Ltd.", "20th Century Fox"],
11
+ "posterPath": "/6FfCtAuVAW8XJjZ7eWeLibRLWTw.jpg",
12
+ "backdropPath": "/yUiXA68FfQeA8cRBhd0Ao0jIRZt.jpg"
13
+ }
@@ -0,0 +1,25 @@
1
+ [
2
+ {
3
+ "city": "Lawrence",
4
+ "state": "KS",
5
+ "country": "US"
6
+ },
7
+ {
8
+ "city": "Sioux Falls",
9
+ "state": "SD",
10
+ "country": "US"
11
+ },
12
+ {
13
+ "city": "Lebanon",
14
+ "state": "KS",
15
+ "country": "US"
16
+ },
17
+ {
18
+ "city": "The Roadhouse"
19
+ },
20
+ {
21
+ "city": "Pontiac",
22
+ "state": "IL",
23
+ "country": "US"
24
+ }
25
+ ]