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.
- package/README.md +72 -21
- package/data/avengers/addresses.json +27 -0
- package/data/avengers/characters.json +178 -0
- package/data/avengers/meta.json +13 -0
- package/data/better-call-saul/addresses.json +37 -0
- package/data/better-call-saul/characters.json +156 -0
- package/data/better-call-saul/meta.json +13 -0
- package/data/big-bang-theory/addresses.json +31 -0
- package/data/big-bang-theory/characters.json +121 -0
- package/data/big-bang-theory/meta.json +13 -0
- package/data/breaking-bad/characters.json +49 -13
- package/data/breaking-bad/meta.json +10 -1
- package/data/fast-and-furious/characters.json +39 -13
- package/data/fast-and-furious/meta.json +15 -1
- package/data/friends/characters.json +138 -22
- package/data/friends/meta.json +13 -1
- package/data/game-of-thrones/characters.json +61 -16
- package/data/game-of-thrones/meta.json +10 -1
- package/data/guardians-of-the-galaxy/addresses.json +17 -0
- package/data/guardians-of-the-galaxy/characters.json +124 -0
- package/data/guardians-of-the-galaxy/meta.json +13 -0
- package/data/harry-potter/characters.json +37 -7
- package/data/harry-potter/meta.json +10 -1
- package/data/house-md/characters.json +79 -25
- package/data/house-md/meta.json +13 -1
- package/data/lost/characters.json +144 -36
- package/data/lost/meta.json +13 -1
- package/data/matrix/characters.json +133 -34
- package/data/matrix/meta.json +18 -1
- package/data/peaky-blinders/characters.json +44 -11
- package/data/peaky-blinders/meta.json +13 -1
- package/data/prison-break/addresses.json +24 -0
- package/data/prison-break/characters.json +116 -0
- package/data/prison-break/meta.json +13 -0
- package/data/sherlock/characters.json +116 -27
- package/data/sherlock/meta.json +13 -1
- package/data/simpsons/addresses.json +21 -0
- package/data/simpsons/characters.json +219 -0
- package/data/simpsons/meta.json +13 -0
- package/data/sopranos/addresses.json +37 -0
- package/data/sopranos/characters.json +184 -0
- package/data/sopranos/meta.json +13 -0
- package/data/south-park/addresses.json +31 -0
- package/data/south-park/characters.json +230 -0
- package/data/south-park/meta.json +13 -0
- package/data/spider-man/addresses.json +31 -0
- package/data/spider-man/characters.json +134 -0
- package/data/spider-man/meta.json +13 -0
- package/data/star-wars/addresses.json +19 -0
- package/data/star-wars/characters.json +153 -0
- package/data/star-wars/meta.json +13 -0
- package/data/supernatural/addresses.json +25 -0
- package/data/supernatural/characters.json +113 -0
- package/data/supernatural/meta.json +13 -0
- package/data/the-office/characters.json +84 -29
- package/data/the-office/meta.json +10 -1
- package/data/the-walking-dead/addresses.json +25 -0
- package/data/the-walking-dead/characters.json +114 -0
- package/data/the-walking-dead/meta.json +13 -0
- package/data/westworld/addresses.json +19 -0
- package/data/westworld/characters.json +108 -0
- package/data/westworld/meta.json +13 -0
- package/data/x-men/addresses.json +24 -0
- package/data/x-men/characters.json +158 -0
- package/data/x-men/meta.json +18 -0
- package/dist/browser.cjs +114 -69
- package/dist/browser.cjs.map +1 -1
- package/dist/browser.d.cts +7 -3
- package/dist/browser.d.ts +7 -3
- package/dist/browser.js +110 -69
- package/dist/browser.js.map +1 -1
- package/dist/cli/cli.cjs +131 -70
- package/dist/cli/cli.cjs.map +1 -1
- package/dist/cli/cli.js +132 -71
- package/dist/cli/cli.js.map +1 -1
- package/dist/index.cjs +132 -68
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +15 -4
- package/dist/index.d.ts +15 -4
- package/dist/index.js +132 -69
- package/dist/index.js.map +1 -1
- package/dist/{universe-store-DJrm7bP7.d.cts → universe-store-CWhCn3U6.d.cts} +31 -19
- package/dist/{universe-store-DJrm7bP7.d.ts → universe-store-CWhCn3U6.d.ts} +31 -19
- package/package.json +12 -4
- package/data/breaking-bad/domains.json +0 -6
- package/data/fast-and-furious/domains.json +0 -6
- package/data/friends/domains.json +0 -6
- package/data/game-of-thrones/domains.json +0 -6
- package/data/harry-potter/domains.json +0 -6
- package/data/house-md/domains.json +0 -6
- package/data/lost/domains.json +0 -6
- package/data/matrix/domains.json +0 -6
- package/data/peaky-blinders/domains.json +0 -6
- package/data/sherlock/domains.json +0 -6
- package/data/the-office/domains.json +0 -6
|
@@ -3,8 +3,14 @@
|
|
|
3
3
|
"id": "jack-shephard",
|
|
4
4
|
"firstName": "Jack",
|
|
5
5
|
"lastName": "Shephard",
|
|
6
|
-
"usernames": [
|
|
7
|
-
|
|
6
|
+
"usernames": [
|
|
7
|
+
"live_together_die_alone",
|
|
8
|
+
"chief_of_surgery",
|
|
9
|
+
"man_of_science",
|
|
10
|
+
"oceanic815_doc",
|
|
11
|
+
"spinal_surgeon"
|
|
12
|
+
],
|
|
13
|
+
"profession": "Spinal surgeon",
|
|
8
14
|
"interests": ["medicine", "leadership", "rock climbing", "reading", "fixing things"],
|
|
9
15
|
"quotes": [
|
|
10
16
|
"We can't do this. Everyman for himself is not going to work. It's time to start organizing. If we can't live together, we're going to die alone.",
|
|
@@ -14,14 +20,23 @@
|
|
|
14
20
|
"I'm gonna kill you.",
|
|
15
21
|
"You're not John Locke. You disrespect his memory by wearing his face, but you're nothing like him. Turns out he was right about most everything. I just wish I could've told him that while he was still alive."
|
|
16
22
|
],
|
|
17
|
-
"gender": "male"
|
|
23
|
+
"gender": "male",
|
|
24
|
+
"symbol": "✈️",
|
|
25
|
+
"color": "#083344",
|
|
26
|
+
"emailDomains": ["los-angeles-med.com", "island-survivors.net"]
|
|
18
27
|
},
|
|
19
28
|
{
|
|
20
29
|
"id": "kate-austen",
|
|
21
30
|
"firstName": "Kate",
|
|
22
31
|
"lastName": "Austen",
|
|
23
|
-
"usernames": [
|
|
24
|
-
|
|
32
|
+
"usernames": [
|
|
33
|
+
"always_running",
|
|
34
|
+
"freckles_fugitive",
|
|
35
|
+
"marshal_bait",
|
|
36
|
+
"oceanic815_kate",
|
|
37
|
+
"not_running_now"
|
|
38
|
+
],
|
|
39
|
+
"profession": "Fugitive, former farmer",
|
|
25
40
|
"interests": ["survival", "firearms", "climbing", "running", "fixing engines"],
|
|
26
41
|
"quotes": [
|
|
27
42
|
"Live together, die alone.",
|
|
@@ -30,14 +45,23 @@
|
|
|
30
45
|
"Since when did shooting kids and blowing up hydrogen bombs become okay?",
|
|
31
46
|
"I saved you a bullet!"
|
|
32
47
|
],
|
|
33
|
-
"gender": "female"
|
|
48
|
+
"gender": "female",
|
|
49
|
+
"symbol": "🏃",
|
|
50
|
+
"color": "#3b1f0a",
|
|
51
|
+
"emailDomains": ["island-survivors.net", "fugitive-runner.net"]
|
|
34
52
|
},
|
|
35
53
|
{
|
|
36
54
|
"id": "john-locke",
|
|
37
55
|
"firstName": "John",
|
|
38
56
|
"lastName": "Locke",
|
|
39
|
-
"usernames": [
|
|
40
|
-
|
|
57
|
+
"usernames": [
|
|
58
|
+
"man_of_faith",
|
|
59
|
+
"dont_tell_me_what_i_cant",
|
|
60
|
+
"walkabout_john",
|
|
61
|
+
"box_company_hunter",
|
|
62
|
+
"the_island_chose_me"
|
|
63
|
+
],
|
|
64
|
+
"profession": "Box company employee, survivalist",
|
|
41
65
|
"interests": ["hunting", "backgammon", "nature", "philosophy", "destiny"],
|
|
42
66
|
"quotes": [
|
|
43
67
|
"Don't tell me what I can't do.",
|
|
@@ -47,14 +71,23 @@
|
|
|
47
71
|
"No, I don't think that's true. You're not running now.",
|
|
48
72
|
"Two players. Two sides. One is light... one is dark."
|
|
49
73
|
],
|
|
50
|
-
"gender": "male"
|
|
74
|
+
"gender": "male",
|
|
75
|
+
"symbol": "🗺️",
|
|
76
|
+
"color": "#083344",
|
|
77
|
+
"emailDomains": ["dharma-initiative.net", "island-survivors.net"]
|
|
51
78
|
},
|
|
52
79
|
{
|
|
53
80
|
"id": "hugo-hurley-reyes",
|
|
54
81
|
"firstName": "Hugo",
|
|
55
82
|
"lastName": "Reyes",
|
|
56
|
-
"usernames": [
|
|
57
|
-
|
|
83
|
+
"usernames": [
|
|
84
|
+
"hurley_dude",
|
|
85
|
+
"number_42_hugo",
|
|
86
|
+
"clucks_lottery_winner",
|
|
87
|
+
"dharma_chef",
|
|
88
|
+
"156_million_problems"
|
|
89
|
+
],
|
|
90
|
+
"profession": "Fast food restaurant owner, lottery winner",
|
|
58
91
|
"interests": ["golf", "comic books", "Star Wars", "chicken", "people"],
|
|
59
92
|
"quotes": [
|
|
60
93
|
"Dude, look, I'd never lie.",
|
|
@@ -64,14 +97,23 @@
|
|
|
64
97
|
"I can sorta use someone with, like, experience. For a little while. So... will you help me, Ben?",
|
|
65
98
|
"It's kind of true, dude. He's worse than Yoda."
|
|
66
99
|
],
|
|
67
|
-
"gender": "male"
|
|
100
|
+
"gender": "male",
|
|
101
|
+
"symbol": "🍗",
|
|
102
|
+
"color": "#083344",
|
|
103
|
+
"emailDomains": ["mr-cluck.com", "island-survivors.net"]
|
|
68
104
|
},
|
|
69
105
|
{
|
|
70
106
|
"id": "james-sawyer-ford",
|
|
71
107
|
"firstName": "James",
|
|
72
108
|
"lastName": "Ford",
|
|
73
|
-
"usernames": [
|
|
74
|
-
|
|
109
|
+
"usernames": [
|
|
110
|
+
"sawyer_nicknames",
|
|
111
|
+
"dharmaville_lafleur",
|
|
112
|
+
"confidence_man_jim",
|
|
113
|
+
"redneck_man",
|
|
114
|
+
"dharma_cowboy"
|
|
115
|
+
],
|
|
116
|
+
"profession": "Con man, DHARMA Initiative security chief",
|
|
75
117
|
"interests": ["reading", "poker", "nicknames", "cons", "whiskey"],
|
|
76
118
|
"quotes": [
|
|
77
119
|
"I'm a complex guy, sweetheart.",
|
|
@@ -81,14 +123,23 @@
|
|
|
81
123
|
"I ain't no hero, Mike.",
|
|
82
124
|
"Some of us are meant to be alone."
|
|
83
125
|
],
|
|
84
|
-
"gender": "male"
|
|
126
|
+
"gender": "male",
|
|
127
|
+
"symbol": "📖",
|
|
128
|
+
"color": "#65a30d",
|
|
129
|
+
"emailDomains": ["island-survivors.net", "dharma-initiative.net"]
|
|
85
130
|
},
|
|
86
131
|
{
|
|
87
132
|
"id": "sayid-jarrah",
|
|
88
133
|
"firstName": "Sayid",
|
|
89
134
|
"lastName": "Jarrah",
|
|
90
|
-
"usernames": [
|
|
91
|
-
|
|
135
|
+
"usernames": [
|
|
136
|
+
"republican_guard_sayid",
|
|
137
|
+
"torturer_of_the_island",
|
|
138
|
+
"nadia_letter",
|
|
139
|
+
"iraqi_soldier",
|
|
140
|
+
"communications_officer"
|
|
141
|
+
],
|
|
142
|
+
"profession": "Former Iraqi Republican Guard communications officer",
|
|
92
143
|
"interests": ["electronics", "cooking", "engineering", "chess", "Nadia"],
|
|
93
144
|
"quotes": [
|
|
94
145
|
"My name is Sayid Jarrah, and I am a torturer.",
|
|
@@ -98,14 +149,23 @@
|
|
|
98
149
|
"I've tortured more people than I can remember. I murdered. Wherever I'm going... it can't be very pleasant.",
|
|
99
150
|
"Because it is going to be you, Jack."
|
|
100
151
|
],
|
|
101
|
-
"gender": "male"
|
|
152
|
+
"gender": "male",
|
|
153
|
+
"symbol": "📡",
|
|
154
|
+
"color": "#083344",
|
|
155
|
+
"emailDomains": ["island-survivors.net", "iraqi-telecom.net"]
|
|
102
156
|
},
|
|
103
157
|
{
|
|
104
158
|
"id": "charlie-pace",
|
|
105
159
|
"firstName": "Charlie",
|
|
106
160
|
"lastName": "Pace",
|
|
107
|
-
"usernames": [
|
|
108
|
-
|
|
161
|
+
"usernames": [
|
|
162
|
+
"driveshaft_bass",
|
|
163
|
+
"bloody_rock_god",
|
|
164
|
+
"not_pennys_boat_charlie",
|
|
165
|
+
"gods_pianist",
|
|
166
|
+
"heroin_hobbit"
|
|
167
|
+
],
|
|
168
|
+
"profession": "Rock musician, bass player of Drive Shaft",
|
|
109
169
|
"interests": ["music", "guitar", "Drive Shaft", "Claire", "Aaron"],
|
|
110
170
|
"quotes": [
|
|
111
171
|
"I'm a bloody rock god!",
|
|
@@ -115,14 +175,23 @@
|
|
|
115
175
|
"It wouldn't be an irrational fear of bees if I could just pull myself together, would it?",
|
|
116
176
|
"Charlie! Tell him I said hi!"
|
|
117
177
|
],
|
|
118
|
-
"gender": "male"
|
|
178
|
+
"gender": "male",
|
|
179
|
+
"symbol": "🎸",
|
|
180
|
+
"color": "#064e3b",
|
|
181
|
+
"emailDomains": ["drive-shaft.net", "island-survivors.net"]
|
|
119
182
|
},
|
|
120
183
|
{
|
|
121
184
|
"id": "desmond-hume",
|
|
122
185
|
"firstName": "Desmond",
|
|
123
186
|
"lastName": "Hume",
|
|
124
|
-
"usernames": [
|
|
125
|
-
|
|
187
|
+
"usernames": [
|
|
188
|
+
"see_you_in_another_life",
|
|
189
|
+
"button_pusher_3years",
|
|
190
|
+
"pennys_constant",
|
|
191
|
+
"brother_desmond",
|
|
192
|
+
"failsafe_key_man"
|
|
193
|
+
],
|
|
194
|
+
"profession": "Former Royal Scots soldier, button pusher",
|
|
126
195
|
"interests": ["sailing", "Penny", "running", "philosophy", "Dickens"],
|
|
127
196
|
"quotes": [
|
|
128
197
|
"Good luck, brother. See you in another life, yeah?",
|
|
@@ -132,14 +201,23 @@
|
|
|
132
201
|
"What's the point in being afraid?",
|
|
133
202
|
"Calling my bloody constant."
|
|
134
203
|
],
|
|
135
|
-
"gender": "male"
|
|
204
|
+
"gender": "male",
|
|
205
|
+
"symbol": "⌚",
|
|
206
|
+
"color": "#0891b2",
|
|
207
|
+
"emailDomains": ["dharma-initiative.net", "hatch-mail.net"]
|
|
136
208
|
},
|
|
137
209
|
{
|
|
138
210
|
"id": "sun-hwa-kwon",
|
|
139
211
|
"firstName": "Sun",
|
|
140
212
|
"lastName": "Kwon",
|
|
141
|
-
"usernames": [
|
|
142
|
-
|
|
213
|
+
"usernames": [
|
|
214
|
+
"paiks_daughter",
|
|
215
|
+
"sun_speaks_english",
|
|
216
|
+
"ji_yeon_mama",
|
|
217
|
+
"oceanic6_sun",
|
|
218
|
+
"controlling_interest_sun"
|
|
219
|
+
],
|
|
220
|
+
"profession": "Businesswoman, daughter of a Korean industrialist",
|
|
143
221
|
"interests": ["gardening", "languages", "painting", "Ji Yeon", "Jin"],
|
|
144
222
|
"quotes": [
|
|
145
223
|
"My husband is many things. But he is not a liar.",
|
|
@@ -149,14 +227,23 @@
|
|
|
149
227
|
"We can start a new life. We'll go away.",
|
|
150
228
|
"So, Seoul. Is that in the good Korea or the bad Korea? The good one."
|
|
151
229
|
],
|
|
152
|
-
"gender": "female"
|
|
230
|
+
"gender": "female",
|
|
231
|
+
"symbol": "🌱",
|
|
232
|
+
"color": "#312e81",
|
|
233
|
+
"emailDomains": ["paik-industries.com", "island-survivors.net"]
|
|
153
234
|
},
|
|
154
235
|
{
|
|
155
236
|
"id": "jin-soo-kwon",
|
|
156
237
|
"firstName": "Jin",
|
|
157
238
|
"lastName": "Kwon",
|
|
158
|
-
"usernames": [
|
|
159
|
-
|
|
239
|
+
"usernames": [
|
|
240
|
+
"jin_kwon_fisherman",
|
|
241
|
+
"paik_enforcer_jin",
|
|
242
|
+
"dharma_security_jin",
|
|
243
|
+
"korean_survivor",
|
|
244
|
+
"sun_husband"
|
|
245
|
+
],
|
|
246
|
+
"profession": "Hotel doorman, Paik Industries enforcer",
|
|
160
247
|
"interests": ["fishing", "family", "cooking", "Sun", "honor"],
|
|
161
248
|
"quotes": [
|
|
162
249
|
"I do this for you, Sun! I do this because your father expects it. I do this because that's what it takes to be married to you!",
|
|
@@ -165,14 +252,23 @@
|
|
|
165
252
|
"Daniel... No more flash?",
|
|
166
253
|
"Please, translate!"
|
|
167
254
|
],
|
|
168
|
-
"gender": "male"
|
|
255
|
+
"gender": "male",
|
|
256
|
+
"symbol": "🎣",
|
|
257
|
+
"color": "#4c1d95",
|
|
258
|
+
"emailDomains": ["paik-industries.com", "island-survivors.net"]
|
|
169
259
|
},
|
|
170
260
|
{
|
|
171
261
|
"id": "benjamin-linus",
|
|
172
262
|
"firstName": "Benjamin",
|
|
173
263
|
"lastName": "Linus",
|
|
174
|
-
"usernames": [
|
|
175
|
-
|
|
264
|
+
"usernames": [
|
|
265
|
+
"henry_gale_ben",
|
|
266
|
+
"the_good_guys_leader",
|
|
267
|
+
"i_always_have_a_plan",
|
|
268
|
+
"otherville_ben",
|
|
269
|
+
"jacob_was_wrong_ben"
|
|
270
|
+
],
|
|
271
|
+
"profession": "Leader of the Others, former DHARMA Initiative member",
|
|
176
272
|
"interests": ["reading", "power", "manipulation", "the Island", "Dostoevsky"],
|
|
177
273
|
"quotes": [
|
|
178
274
|
"I always have a plan.",
|
|
@@ -182,14 +278,23 @@
|
|
|
182
278
|
"John Locke was a... a believer, he was a man of faith, he was... a much better man than I will ever be. And I'm very sorry I murdered him.",
|
|
183
279
|
"I would be honored."
|
|
184
280
|
],
|
|
185
|
-
"gender": "male"
|
|
281
|
+
"gender": "male",
|
|
282
|
+
"symbol": "📚",
|
|
283
|
+
"color": "#7c2d12",
|
|
284
|
+
"emailDomains": ["dharma-initiative.net", "the-others.net"]
|
|
186
285
|
},
|
|
187
286
|
{
|
|
188
287
|
"id": "richard-alpert",
|
|
189
288
|
"firstName": "Richard",
|
|
190
289
|
"lastName": "Alpert",
|
|
191
|
-
"usernames": [
|
|
192
|
-
|
|
290
|
+
"usernames": [
|
|
291
|
+
"never_ages_richard",
|
|
292
|
+
"jacobus_emissary",
|
|
293
|
+
"eyeliner_richard",
|
|
294
|
+
"advisor_to_the_island",
|
|
295
|
+
"ab_aeterno_richard"
|
|
296
|
+
],
|
|
297
|
+
"profession": "Adviser to the Others, immortal",
|
|
193
298
|
"interests": ["the Island", "Jacob", "history", "faith", "serving"],
|
|
194
299
|
"quotes": [
|
|
195
300
|
"It points north, John.",
|
|
@@ -199,6 +304,9 @@
|
|
|
199
304
|
"I want my wife back.",
|
|
200
305
|
"I never want to die. I want to live forever."
|
|
201
306
|
],
|
|
202
|
-
"gender": "male"
|
|
307
|
+
"gender": "male",
|
|
308
|
+
"symbol": "⏳",
|
|
309
|
+
"color": "#1e3a5f",
|
|
310
|
+
"emailDomains": ["the-others.net", "island-survivors.net"]
|
|
203
311
|
}
|
|
204
312
|
]
|
package/data/lost/meta.json
CHANGED
|
@@ -1 +1,13 @@
|
|
|
1
|
-
{
|
|
1
|
+
{
|
|
2
|
+
"id": "lost",
|
|
3
|
+
"name": "Lost",
|
|
4
|
+
"genre": ["drama", "mystery", "sci-fi"],
|
|
5
|
+
"description": "Survivors of a plane crash are stranded on a mysterious island that harbors supernatural forces and hidden conspiracies.",
|
|
6
|
+
"tmdbId": 4607,
|
|
7
|
+
"mediaType": "tv",
|
|
8
|
+
"year": 2004,
|
|
9
|
+
"rating": 7.9,
|
|
10
|
+
"networks": ["ABC"],
|
|
11
|
+
"posterPath": "/og6S0aTZU6YUJAbqxeKjCa3kY1E.jpg",
|
|
12
|
+
"backdropPath": "/yUOFocKDW7MCC5isx4FK8A68QFp.jpg"
|
|
13
|
+
}
|
|
@@ -1,10 +1,16 @@
|
|
|
1
1
|
[
|
|
2
2
|
{
|
|
3
3
|
"id": "neo",
|
|
4
|
-
"firstName": "
|
|
5
|
-
"lastName": "
|
|
6
|
-
"usernames": [
|
|
7
|
-
|
|
4
|
+
"firstName": "Neo",
|
|
5
|
+
"lastName": "",
|
|
6
|
+
"usernames": [
|
|
7
|
+
"the_one",
|
|
8
|
+
"red_pill_taken",
|
|
9
|
+
"follow_the_white_rabbit",
|
|
10
|
+
"mr_anderson_no_more",
|
|
11
|
+
"beyond_the_matrix"
|
|
12
|
+
],
|
|
13
|
+
"profession": "Software engineer",
|
|
8
14
|
"interests": ["hacking", "martial arts", "truth", "philosophy", "freedom"],
|
|
9
15
|
"quotes": [
|
|
10
16
|
"I know you're out there. I can feel you now. I know that you're afraid. You're afraid of us. You're afraid of change.",
|
|
@@ -15,14 +21,23 @@
|
|
|
15
21
|
"Because I choose to.",
|
|
16
22
|
"I'm going to show these people what you don't want them to see. I'm going to show them a world without you. A world without rules or controls, borders or boundaries. A world where anything is possible."
|
|
17
23
|
],
|
|
18
|
-
"gender": "male"
|
|
24
|
+
"gender": "male",
|
|
25
|
+
"symbol": "💊",
|
|
26
|
+
"color": "#134e4a",
|
|
27
|
+
"emailDomains": ["metacortex.com", "zion-free.net"]
|
|
19
28
|
},
|
|
20
29
|
{
|
|
21
30
|
"id": "morpheus",
|
|
22
31
|
"firstName": "Morpheus",
|
|
23
32
|
"lastName": "",
|
|
24
|
-
"usernames": [
|
|
25
|
-
|
|
33
|
+
"usernames": [
|
|
34
|
+
"captain_nebuchadnezzar",
|
|
35
|
+
"oracle_believer",
|
|
36
|
+
"zion_soldier",
|
|
37
|
+
"free_your_mind",
|
|
38
|
+
"red_pill_dealer"
|
|
39
|
+
],
|
|
40
|
+
"profession": "Ship captain",
|
|
26
41
|
"interests": ["prophecy", "resistance", "philosophy", "leadership", "Zion"],
|
|
27
42
|
"quotes": [
|
|
28
43
|
"Unfortunately, no one can be told what the Matrix is. You have to see it for yourself.",
|
|
@@ -33,14 +48,23 @@
|
|
|
33
48
|
"What is real? How do you define real? If you're talking about what you can feel, what you can smell, what you can taste and see, then real is simply electrical signals interpreted by your brain.",
|
|
34
49
|
"Then tomorrow we may all be dead, but how would that be different from any other day? This is a war, and we are soldiers. Death can come for us at any time, in any place."
|
|
35
50
|
],
|
|
36
|
-
"gender": "male"
|
|
51
|
+
"gender": "male",
|
|
52
|
+
"symbol": "🔴",
|
|
53
|
+
"color": "#3b1f0a",
|
|
54
|
+
"emailDomains": ["zion-free.net", "nebuchadnezzar.net"]
|
|
37
55
|
},
|
|
38
56
|
{
|
|
39
57
|
"id": "trinity",
|
|
40
58
|
"firstName": "Trinity",
|
|
41
59
|
"lastName": "",
|
|
42
|
-
"usernames": [
|
|
43
|
-
|
|
60
|
+
"usernames": [
|
|
61
|
+
"dodge_this",
|
|
62
|
+
"nebuchadnezzar_crew",
|
|
63
|
+
"loves_the_one",
|
|
64
|
+
"ranking_officer",
|
|
65
|
+
"zion_fighter"
|
|
66
|
+
],
|
|
67
|
+
"profession": "Hacker",
|
|
44
68
|
"interests": ["hacking", "combat", "freedom", "loyalty", "flying"],
|
|
45
69
|
"quotes": [
|
|
46
70
|
"Dodge this.",
|
|
@@ -51,14 +75,23 @@
|
|
|
51
75
|
"I will not stand here and do nothing. I will not wait here to watch them die.",
|
|
52
76
|
"Neo, no one has ever done anything like this."
|
|
53
77
|
],
|
|
54
|
-
"gender": "female"
|
|
78
|
+
"gender": "female",
|
|
79
|
+
"symbol": "💻",
|
|
80
|
+
"color": "#312e81",
|
|
81
|
+
"emailDomains": ["zion-free.net", "nebuchadnezzar.net"]
|
|
55
82
|
},
|
|
56
83
|
{
|
|
57
84
|
"id": "agent-smith",
|
|
58
85
|
"firstName": "Agent",
|
|
59
86
|
"lastName": "Smith",
|
|
60
|
-
"usernames": [
|
|
61
|
-
|
|
87
|
+
"usernames": [
|
|
88
|
+
"mr_anderson",
|
|
89
|
+
"virus_not_mammal",
|
|
90
|
+
"agent_of_the_system",
|
|
91
|
+
"purpose_defines",
|
|
92
|
+
"inevitable"
|
|
93
|
+
],
|
|
94
|
+
"profession": "Machine agent",
|
|
62
95
|
"interests": ["order", "control", "elimination", "purpose", "freedom from purpose"],
|
|
63
96
|
"quotes": [
|
|
64
97
|
"As you can see, we've had our eye on you for some time now, Mr. Anderson. It seems that you've been living two lives.",
|
|
@@ -69,13 +102,22 @@
|
|
|
69
102
|
"I killed you, Mr. Anderson, I watched you die; and with a certain satisfaction, I might add.",
|
|
70
103
|
"Why, Mr. Anderson?! Why?! WHY DO YOU PERSIST?!"
|
|
71
104
|
],
|
|
72
|
-
"gender": "male"
|
|
105
|
+
"gender": "male",
|
|
106
|
+
"symbol": "🕶️",
|
|
107
|
+
"color": "#059669",
|
|
108
|
+
"emailDomains": ["matrix-agents.com", "machine-city.net"]
|
|
73
109
|
},
|
|
74
110
|
{
|
|
75
111
|
"id": "the-oracle",
|
|
76
112
|
"firstName": "The",
|
|
77
113
|
"lastName": "Oracle",
|
|
78
|
-
"usernames": [
|
|
114
|
+
"usernames": [
|
|
115
|
+
"know_thyself",
|
|
116
|
+
"cookie_baker",
|
|
117
|
+
"not_without_irony",
|
|
118
|
+
"unbalance_it",
|
|
119
|
+
"temet_nosce"
|
|
120
|
+
],
|
|
79
121
|
"profession": "Oracle program",
|
|
80
122
|
"interests": ["humanity", "baking", "choice", "prophecy", "the future"],
|
|
81
123
|
"quotes": [
|
|
@@ -87,14 +129,23 @@
|
|
|
87
129
|
"One way or another, Neo, this war is going to end. Tonight, the future of both worlds will be in your hands… or in his.",
|
|
88
130
|
"What do you think I am? Human?"
|
|
89
131
|
],
|
|
90
|
-
"gender": "female"
|
|
132
|
+
"gender": "female",
|
|
133
|
+
"symbol": "🍪",
|
|
134
|
+
"color": "#16a34a",
|
|
135
|
+
"emailDomains": ["zion-free.net", "oracle-program.net"]
|
|
91
136
|
},
|
|
92
137
|
{
|
|
93
138
|
"id": "cypher",
|
|
94
139
|
"firstName": "Cypher",
|
|
95
140
|
"lastName": "",
|
|
96
|
-
"usernames": [
|
|
97
|
-
|
|
141
|
+
"usernames": [
|
|
142
|
+
"ignorance_is_bliss",
|
|
143
|
+
"steak_tastes_real",
|
|
144
|
+
"back_to_sleep",
|
|
145
|
+
"reinserted",
|
|
146
|
+
"judas_of_zion"
|
|
147
|
+
],
|
|
148
|
+
"profession": "Hacker",
|
|
98
149
|
"interests": ["comfort", "steak", "wine", "forgetting", "the Matrix"],
|
|
99
150
|
"quotes": [
|
|
100
151
|
"Buckle your seat belt, Dorothy, 'cause Kansas is going bye-bye.",
|
|
@@ -105,14 +156,23 @@
|
|
|
105
156
|
"I don't believe it!",
|
|
106
157
|
"He lied to us, Trinity. He tricked us."
|
|
107
158
|
],
|
|
108
|
-
"gender": "male"
|
|
159
|
+
"gender": "male",
|
|
160
|
+
"symbol": "🥩",
|
|
161
|
+
"color": "#d97706",
|
|
162
|
+
"emailDomains": ["matrix-agents.com", "zion-free.net"]
|
|
109
163
|
},
|
|
110
164
|
{
|
|
111
165
|
"id": "tank",
|
|
112
166
|
"firstName": "Tank",
|
|
113
167
|
"lastName": "",
|
|
114
|
-
"usernames": [
|
|
115
|
-
|
|
168
|
+
"usernames": [
|
|
169
|
+
"genuine_child_of_zion",
|
|
170
|
+
"operator_online",
|
|
171
|
+
"born_free",
|
|
172
|
+
"no_holes",
|
|
173
|
+
"last_human_city"
|
|
174
|
+
],
|
|
175
|
+
"profession": "Operator",
|
|
116
176
|
"interests": ["Zion", "hovercraft systems", "human freedom", "family", "combat programs"],
|
|
117
177
|
"quotes": [
|
|
118
178
|
"Me and my brother Dozer, we're both one hundred percent pure, old fashioned, home-grown human, born free right here in the real world.",
|
|
@@ -123,14 +183,23 @@
|
|
|
123
183
|
"Believe it or not, you piece of shit, you're still gonna burn!",
|
|
124
184
|
"So what do you need, besides a miracle?"
|
|
125
185
|
],
|
|
126
|
-
"gender": "male"
|
|
186
|
+
"gender": "male",
|
|
187
|
+
"symbol": "⚙️",
|
|
188
|
+
"color": "#3b1f0a",
|
|
189
|
+
"emailDomains": ["nebuchadnezzar.net", "hardline-operator.net"]
|
|
127
190
|
},
|
|
128
191
|
{
|
|
129
192
|
"id": "mouse",
|
|
130
193
|
"firstName": "Mouse",
|
|
131
194
|
"lastName": "",
|
|
132
|
-
"usernames": [
|
|
133
|
-
|
|
195
|
+
"usernames": [
|
|
196
|
+
"woman_in_red",
|
|
197
|
+
"neural_kinetics",
|
|
198
|
+
"digital_pimp",
|
|
199
|
+
"fastest_on_the_ship",
|
|
200
|
+
"not_real_chicken"
|
|
201
|
+
],
|
|
202
|
+
"profession": "Hacker",
|
|
134
203
|
"interests": ["simulation design", "women", "combat", "chicken programs", "virtual reality"],
|
|
135
204
|
"quotes": [
|
|
136
205
|
"Morpheus is fighting Neo.",
|
|
@@ -139,14 +208,23 @@
|
|
|
139
208
|
"So what if he makes it?",
|
|
140
209
|
"I know, I know. But what if he does?"
|
|
141
210
|
],
|
|
142
|
-
"gender": "male"
|
|
211
|
+
"gender": "male",
|
|
212
|
+
"symbol": "👻",
|
|
213
|
+
"color": "#475569",
|
|
214
|
+
"emailDomains": ["nebuchadnezzar.net", "construct-sim.net"]
|
|
143
215
|
},
|
|
144
216
|
{
|
|
145
217
|
"id": "the-architect",
|
|
146
218
|
"firstName": "The",
|
|
147
219
|
"lastName": "Architect",
|
|
148
|
-
"usernames": [
|
|
149
|
-
|
|
220
|
+
"usernames": [
|
|
221
|
+
"matrix_creator",
|
|
222
|
+
"anomaly_counter",
|
|
223
|
+
"sixth_version",
|
|
224
|
+
"mathematical_precision",
|
|
225
|
+
"father_of_matrix"
|
|
226
|
+
],
|
|
227
|
+
"profession": "Architect program",
|
|
150
228
|
"interests": ["order", "mathematics", "system stability", "equations", "control"],
|
|
151
229
|
"quotes": [
|
|
152
230
|
"I am the Architect. I created the Matrix.",
|
|
@@ -157,14 +235,23 @@
|
|
|
157
235
|
"If I am the father of the Matrix, she would undoubtedly be its mother.",
|
|
158
236
|
"We won't."
|
|
159
237
|
],
|
|
160
|
-
"gender": "male"
|
|
238
|
+
"gender": "male",
|
|
239
|
+
"symbol": "📐",
|
|
240
|
+
"color": "#dc2626",
|
|
241
|
+
"emailDomains": ["machine-city.net", "matrix-agents.com"]
|
|
161
242
|
},
|
|
162
243
|
{
|
|
163
244
|
"id": "seraph",
|
|
164
245
|
"firstName": "Seraph",
|
|
165
246
|
"lastName": "",
|
|
166
|
-
"usernames": [
|
|
167
|
-
|
|
247
|
+
"usernames": [
|
|
248
|
+
"wingless_angel",
|
|
249
|
+
"oracle_guardian",
|
|
250
|
+
"l_ange_sans_ailes",
|
|
251
|
+
"golden_path",
|
|
252
|
+
"protector_program"
|
|
253
|
+
],
|
|
254
|
+
"profession": "Guardian program",
|
|
168
255
|
"interests": ["protection", "martial arts", "loyalty", "the Oracle", "purpose"],
|
|
169
256
|
"quotes": [
|
|
170
257
|
"You do not truly know someone until you fight them.",
|
|
@@ -173,14 +260,23 @@
|
|
|
173
260
|
"So be it.",
|
|
174
261
|
"I have beaten you before."
|
|
175
262
|
],
|
|
176
|
-
"gender": "male"
|
|
263
|
+
"gender": "male",
|
|
264
|
+
"symbol": "🛡️",
|
|
265
|
+
"color": "#312e81",
|
|
266
|
+
"emailDomains": ["oracle-program.net", "tea-house.net"]
|
|
177
267
|
},
|
|
178
268
|
{
|
|
179
269
|
"id": "niobe",
|
|
180
270
|
"firstName": "Niobe",
|
|
181
271
|
"lastName": "",
|
|
182
|
-
"usernames": [
|
|
183
|
-
|
|
272
|
+
"usernames": [
|
|
273
|
+
"logos_captain",
|
|
274
|
+
"best_pilot_in_zion",
|
|
275
|
+
"ghost_crew",
|
|
276
|
+
"zion_commander",
|
|
277
|
+
"freeway_driver"
|
|
278
|
+
],
|
|
279
|
+
"profession": "Ship captain",
|
|
184
280
|
"interests": ["piloting", "resistance", "Zion", "survival", "combat"],
|
|
185
281
|
"quotes": [
|
|
186
282
|
"I can't help it, Morpheus, I can't help thinking – what if you're wrong.",
|
|
@@ -189,6 +285,9 @@
|
|
|
189
285
|
"There must be some kind of failsafe.",
|
|
190
286
|
"Then what do you need us for?"
|
|
191
287
|
],
|
|
192
|
-
"gender": "female"
|
|
288
|
+
"gender": "female",
|
|
289
|
+
"symbol": "🚀",
|
|
290
|
+
"color": "#083344",
|
|
291
|
+
"emailDomains": ["zion-free.net", "logos-ship.net"]
|
|
193
292
|
}
|
|
194
293
|
]
|
package/data/matrix/meta.json
CHANGED
|
@@ -1 +1,18 @@
|
|
|
1
|
-
{
|
|
1
|
+
{
|
|
2
|
+
"id": "matrix",
|
|
3
|
+
"name": "The Matrix",
|
|
4
|
+
"genre": ["sci-fi", "action"],
|
|
5
|
+
"description": "A hacker discovers that reality is a simulation controlled by machines and joins the resistance fighting for humanity's freedom.",
|
|
6
|
+
"tmdbId": 603,
|
|
7
|
+
"mediaType": "movie",
|
|
8
|
+
"year": 1999,
|
|
9
|
+
"rating": 8.2,
|
|
10
|
+
"networks": [
|
|
11
|
+
"Village Roadshow Pictures",
|
|
12
|
+
"Groucho II Film Partnership",
|
|
13
|
+
"Silver Pictures",
|
|
14
|
+
"Warner Bros. Pictures"
|
|
15
|
+
],
|
|
16
|
+
"posterPath": "/p96dm7sCMn4VYAStA6siNz30G1r.jpg",
|
|
17
|
+
"backdropPath": "/tlm8UkiQsitc8rSuIAscQDCnP8d.jpg"
|
|
18
|
+
}
|