loredata 0.3.0 β†’ 0.4.1

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 (48) hide show
  1. package/README.md +97 -59
  2. package/data/avengers/characters.json +304 -177
  3. package/data/better-call-saul/characters.json +267 -155
  4. package/data/big-bang-theory/characters.json +197 -120
  5. package/data/big-bang-theory/meta.json +1 -1
  6. package/data/breaking-bad/characters.json +249 -155
  7. package/data/fast-and-furious/addresses.json +1 -2
  8. package/data/fast-and-furious/characters.json +226 -140
  9. package/data/friends/characters.json +402 -291
  10. package/data/friends/meta.json +1 -1
  11. package/data/game-of-thrones/addresses.json +6 -22
  12. package/data/game-of-thrones/characters.json +507 -314
  13. package/data/guardians-of-the-galaxy/characters.json +225 -123
  14. package/data/harry-potter/addresses.json +6 -11
  15. package/data/harry-potter/characters.json +239 -154
  16. package/data/house-md/characters.json +164 -43
  17. package/data/lost/characters.json +420 -311
  18. package/data/matrix/characters.json +123 -24
  19. package/data/matrix/meta.json +1 -1
  20. package/data/peaky-blinders/characters.json +180 -37
  21. package/data/peaky-blinders/meta.json +1 -1
  22. package/data/prison-break/characters.json +91 -19
  23. package/data/sherlock/characters.json +369 -272
  24. package/data/simpsons/characters.json +205 -41
  25. package/data/sopranos/characters.json +291 -183
  26. package/data/south-park/characters.json +371 -229
  27. package/data/spider-man/characters.json +124 -39
  28. package/data/spider-man/meta.json +6 -6
  29. package/data/star-wars/characters.json +129 -28
  30. package/data/stranger-things/addresses.json +31 -0
  31. package/data/stranger-things/characters.json +226 -0
  32. package/data/stranger-things/meta.json +13 -0
  33. package/data/supernatural/characters.json +96 -19
  34. package/data/supernatural/meta.json +6 -6
  35. package/data/the-crown/addresses.json +27 -0
  36. package/data/the-crown/characters.json +275 -0
  37. package/data/the-crown/meta.json +13 -0
  38. package/data/the-office/characters.json +478 -298
  39. package/data/the-walking-dead/characters.json +93 -21
  40. package/data/the-witcher/addresses.json +22 -0
  41. package/data/the-witcher/characters.json +272 -0
  42. package/data/the-witcher/meta.json +13 -0
  43. package/data/vikings/addresses.json +26 -0
  44. package/data/vikings/characters.json +240 -0
  45. package/data/vikings/meta.json +13 -0
  46. package/data/westworld/characters.json +71 -18
  47. package/data/x-men/characters.json +108 -24
  48. package/package.json +85 -84
@@ -3,9 +3,18 @@
3
3
  "id": "rick-grimes",
4
4
  "firstName": "Rick",
5
5
  "lastName": "Grimes",
6
- "usernames": ["officer_friendly", "coral_dad", "not_a_democracy"],
6
+ "usernames": [
7
+ "officer_friendly",
8
+ "coral_dad",
9
+ "not_a_democracy"
10
+ ],
7
11
  "profession": "Sheriff",
8
- "interests": ["farming", "family", "justice", "law enforcement"],
12
+ "interests": [
13
+ "farming",
14
+ "family",
15
+ "leadership",
16
+ "survival planning"
17
+ ],
9
18
  "quotes": [
10
19
  "We are the walking dead.",
11
20
  "You're staying, this isn't a democracy anymore.",
@@ -16,15 +25,27 @@
16
25
  "gender": "male",
17
26
  "symbol": "⭐",
18
27
  "color": "#7f1d1d",
19
- "emailDomains": ["alexandria-safe-zone.net", "georgia-survivors.net"]
28
+ "emailDomains": [
29
+ "alexandria-safe-zone.net",
30
+ "georgia-survivors.net"
31
+ ]
20
32
  },
21
33
  {
22
34
  "id": "daryl-dixon",
23
35
  "firstName": "Daryl",
24
36
  "lastName": "Dixon",
25
- "usernames": ["crossbow_rider", "angel_wings", "cherokee_rose"],
37
+ "usernames": [
38
+ "crossbow_rider",
39
+ "angel_wings",
40
+ "cherokee_rose"
41
+ ],
26
42
  "profession": "Hunter",
27
- "interests": ["hunting", "motorcycles", "survival", "tracking"],
43
+ "interests": [
44
+ "hunting",
45
+ "motorcycles",
46
+ "survival",
47
+ "tracking"
48
+ ],
28
49
  "quotes": [
29
50
  "We ain't them. We're not them.",
30
51
  "Yeah, you used to be somebody's, huh? Now you're just yours.",
@@ -35,14 +56,26 @@
35
56
  "gender": "male",
36
57
  "symbol": "🏹",
37
58
  "color": "#4a3728",
38
- "emailDomains": ["georgia-survivors.net", "alexandria-safe-zone.net"]
59
+ "emailDomains": [
60
+ "georgia-survivors.net",
61
+ "alexandria-safe-zone.net"
62
+ ]
39
63
  },
40
64
  {
41
65
  "id": "negan",
42
66
  "firstName": "Negan",
43
- "usernames": ["pee_pants_city", "lucille_swings", "eeny_meeny"],
67
+ "usernames": [
68
+ "pee_pants_city",
69
+ "lucille_swings",
70
+ "eeny_meeny"
71
+ ],
44
72
  "profession": "Warlord",
45
- "interests": ["power", "whistling", "Lucille", "rules", "survival"],
73
+ "interests": [
74
+ "whistling",
75
+ "baseball",
76
+ "intimidation tactics",
77
+ "survival"
78
+ ],
46
79
  "quotes": [
47
80
  "You are so gonna regret crossing me in a few minutes.",
48
81
  "I simply cannot decide. I got an idea.",
@@ -53,14 +86,26 @@
53
86
  "gender": "male",
54
87
  "symbol": "⚾",
55
88
  "color": "#7f1d1d",
56
- "emailDomains": ["the-saviors.net", "sanctuary-hq.com"]
89
+ "emailDomains": [
90
+ "the-saviors.net",
91
+ "sanctuary-hq.com"
92
+ ]
57
93
  },
58
94
  {
59
95
  "id": "michonne",
60
96
  "firstName": "Michonne",
61
- "usernames": ["pet_walkers", "just_another_monster", "andre_mom"],
62
- "profession": "Warrior",
63
- "interests": ["survival", "art", "justice", "community"],
97
+ "usernames": [
98
+ "pet_walkers",
99
+ "just_another_monster",
100
+ "andre_mom"
101
+ ],
102
+ "profession": "Katana fighter",
103
+ "interests": [
104
+ "survival",
105
+ "art",
106
+ "community building",
107
+ "sword training"
108
+ ],
64
109
  "quotes": [
65
110
  "They deserve what they got. They weren't human to begin with.",
66
111
  "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.",
@@ -71,15 +116,27 @@
71
116
  "gender": "female",
72
117
  "symbol": "βš”οΈ",
73
118
  "color": "#1e3a5f",
74
- "emailDomains": ["alexandria-safe-zone.net", "georgia-survivors.net"]
119
+ "emailDomains": [
120
+ "alexandria-safe-zone.net",
121
+ "georgia-survivors.net"
122
+ ]
75
123
  },
76
124
  {
77
125
  "id": "carol-peletier",
78
126
  "firstName": "Carol",
79
127
  "lastName": "Peletier",
80
- "usernames": ["cookie_lady", "look_at_flowers", "oh_sunshine"],
81
- "profession": "Survivor",
82
- "interests": ["baking", "strategy", "marksmanship", "protecting the group"],
128
+ "usernames": [
129
+ "cookie_lady",
130
+ "look_at_flowers",
131
+ "oh_sunshine"
132
+ ],
133
+ "profession": "Homemaker",
134
+ "interests": [
135
+ "baking",
136
+ "strategy",
137
+ "marksmanship",
138
+ "protecting the group"
139
+ ],
83
140
  "quotes": [
84
141
  "You can never tell anyone, especially your mom.",
85
142
  "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.",
@@ -90,15 +147,27 @@
90
147
  "gender": "female",
91
148
  "symbol": "πŸͺ",
92
149
  "color": "#166534",
93
- "emailDomains": ["alexandria-safe-zone.net", "georgia-survivors.net"]
150
+ "emailDomains": [
151
+ "alexandria-safe-zone.net",
152
+ "cookies-and-casseroles.net"
153
+ ]
94
154
  },
95
155
  {
96
156
  "id": "glenn-rhee",
97
157
  "firstName": "Glenn",
98
158
  "lastName": "Rhee",
99
- "usernames": ["dumpster_survivor", "pizza_delivery", "cozy_in_there"],
159
+ "usernames": [
160
+ "dumpster_survivor",
161
+ "pizza_delivery",
162
+ "cozy_in_there"
163
+ ],
100
164
  "profession": "Delivery driver",
101
- "interests": ["scavenging", "supply runs", "cars", "community"],
165
+ "interests": [
166
+ "scavenging",
167
+ "supply runs",
168
+ "cars",
169
+ "community"
170
+ ],
102
171
  "quotes": [
103
172
  "Hey, you. Dumbass. Hey, you in the tank. Cozy in there?",
104
173
  "Nice moves there, Clint Eastwood. You the new sheriff come riding in to clean up the town?",
@@ -109,6 +178,9 @@
109
178
  "gender": "male",
110
179
  "symbol": "πŸ•",
111
180
  "color": "#1e3a5f",
112
- "emailDomains": ["georgia-survivors.net", "alexandria-safe-zone.net"]
181
+ "emailDomains": [
182
+ "georgia-survivors.net",
183
+ "alexandria-safe-zone.net"
184
+ ]
113
185
  }
114
- ]
186
+ ]
@@ -0,0 +1,22 @@
1
+ [
2
+ {
3
+ "city": "Kaer Morhen",
4
+ "state": "Kaedwen"
5
+ },
6
+ {
7
+ "city": "Oxenfurt",
8
+ "state": "Redania"
9
+ },
10
+ {
11
+ "city": "Rivia",
12
+ "state": "Kovir"
13
+ },
14
+ {
15
+ "city": "Novigrad",
16
+ "state": "Redania"
17
+ },
18
+ {
19
+ "city": "Cintra",
20
+ "state": "Cintra"
21
+ }
22
+ ]
@@ -0,0 +1,272 @@
1
+ [
2
+ {
3
+ "id": "geralt-of-rivia",
4
+ "firstName": "Geralt",
5
+ "lastName": "of Rivia",
6
+ "usernames": [
7
+ "white_wolf",
8
+ "butcher_blaviken",
9
+ "gwent_denier",
10
+ "trial_of_grasses",
11
+ "roach_rider"
12
+ ],
13
+ "profession": "Witcher",
14
+ "interests": [
15
+ "bestiary lore",
16
+ "sword drills",
17
+ "alchemy",
18
+ "horseback riding",
19
+ "card games"
20
+ ],
21
+ "quotes": [
22
+ "Evil is evil, Stregobor. Lesser, greater, middling... it's all the same. But now, if I have to choose between one evil and another, then I prefer not to choose at all.",
23
+ "Don't touch Roach.",
24
+ "Blessed silence.",
25
+ "Sometimes there's monsters, sometimes there's money. Rarely both. That's the life.",
26
+ "If you must kill me... I am ready. But the Sylvan's right. Don't call me human."
27
+ ],
28
+ "gender": "male",
29
+ "symbol": "🐺",
30
+ "color": "#374151",
31
+ "emailDomains": [
32
+ "kaer-morhen.net",
33
+ "witcher-guild.org",
34
+ "rivia-mail.com"
35
+ ]
36
+ },
37
+ {
38
+ "id": "yennefer",
39
+ "firstName": "Yennefer",
40
+ "lastName": "of Vengerberg",
41
+ "usernames": [
42
+ "vengerberg_violet",
43
+ "lilac_gooseberries",
44
+ "dear_friend_yen",
45
+ "chaos_is_order",
46
+ "portal_politics"
47
+ ],
48
+ "profession": "Sorceress",
49
+ "interests": [
50
+ "court politics",
51
+ "enchantment",
52
+ "alchemy",
53
+ "relic studies",
54
+ "court diplomacy"
55
+ ],
56
+ "quotes": [
57
+ "I've never been shy a day in my life.",
58
+ "Nobody smart plays fair.",
59
+ "They took my choice, I want it back.",
60
+ "When you have power like this, never apologize.",
61
+ "Think for yourselves. It'll save you a lifetime of heartbreak."
62
+ ],
63
+ "gender": "female",
64
+ "symbol": "πŸ¦…",
65
+ "color": "#581c87",
66
+ "emailDomains": [
67
+ "aedirn-magic.net",
68
+ "sorceress-collective.org",
69
+ "vengerberg-sorcery.com"
70
+ ]
71
+ },
72
+ {
73
+ "id": "ciri",
74
+ "firstName": "Ciri",
75
+ "lastName": "of Cintra",
76
+ "usernames": [
77
+ "lion_cub",
78
+ "zireael",
79
+ "swallow_child",
80
+ "cintra_heir",
81
+ "falka_shadow"
82
+ ],
83
+ "profession": "Princess of Cintra",
84
+ "interests": [
85
+ "sword drills",
86
+ "horseback riding",
87
+ "survival training",
88
+ "ancient prophecies",
89
+ "map reading"
90
+ ],
91
+ "quotes": [
92
+ "I watched my entire home burn to the ground at the hands of another.",
93
+ "Less than perfect means death.",
94
+ "I'm done apologizing. I'm done with all of this. I have to move on.",
95
+ "Everything I was told my whole life was a lie.",
96
+ "I want to be like you, Geralt."
97
+ ],
98
+ "gender": "female",
99
+ "symbol": "🦁",
100
+ "color": "#1e3a8a",
101
+ "emailDomains": [
102
+ "cintra-royal.gov",
103
+ "elder-blood.net",
104
+ "lion-cub.com"
105
+ ]
106
+ },
107
+ {
108
+ "id": "dandelion",
109
+ "firstName": "Dandelion",
110
+ "lastName": "",
111
+ "usernames": [
112
+ "golden_lute",
113
+ "rare_species_bard",
114
+ "toss_a_coin",
115
+ "sandpiper_song",
116
+ "valley_of_plenty"
117
+ ],
118
+ "profession": "Bard",
119
+ "interests": [
120
+ "poetry",
121
+ "court gossip",
122
+ "travel writing",
123
+ "tavern music",
124
+ "romantic ballads"
125
+ ],
126
+ "quotes": [
127
+ "I love the way you just... sit in the corner and brood.",
128
+ "Respect doesn't make history.",
129
+ "Toss a coin to your Witcher, O Valley of Plenty",
130
+ "You don't get to play the damsel in distress. That's my job.",
131
+ "They're alive! They're really alive."
132
+ ],
133
+ "gender": "male",
134
+ "symbol": "🎸",
135
+ "color": "#b45309",
136
+ "emailDomains": [
137
+ "oxenfurt-academy.edu",
138
+ "bards-corner.net",
139
+ "golden-verse.com"
140
+ ]
141
+ },
142
+ {
143
+ "id": "triss-merigold",
144
+ "firstName": "Triss",
145
+ "lastName": "Merigold",
146
+ "usernames": [
147
+ "maribor_healer",
148
+ "lodge_delegate",
149
+ "fourteenth_of_the_hill",
150
+ "sodden_survivor",
151
+ "temeria_safehouse"
152
+ ],
153
+ "profession": "Sorceress",
154
+ "interests": [
155
+ "herbalism",
156
+ "medical care",
157
+ "court diplomacy",
158
+ "refugee aid",
159
+ "alchemy"
160
+ ],
161
+ "quotes": [
162
+ "Not answering questions is a pillar of your brooding charm.",
163
+ "There is a vortex of fate around all of us, Geralt, growing with each and every one of our choices, drawing our destinies in closer.",
164
+ "Does Nilfgaard really believe they can take the whole continent?"
165
+ ],
166
+ "gender": "female",
167
+ "symbol": "🌿",
168
+ "color": "#166534",
169
+ "emailDomains": [
170
+ "merigold-magic.net",
171
+ "karthage-sorcery.org",
172
+ "lodge-of-sorceresses.net"
173
+ ]
174
+ },
175
+ {
176
+ "id": "vesemir",
177
+ "firstName": "Vesemir",
178
+ "lastName": "",
179
+ "usernames": [
180
+ "old_wolf",
181
+ "kaer_morhen_keeper",
182
+ "winter_drillmaster",
183
+ "wolf_school_elder",
184
+ "medallion_tree"
185
+ ],
186
+ "profession": "Witcher trainer",
187
+ "interests": [
188
+ "fencing drills",
189
+ "witcher history",
190
+ "monster lore",
191
+ "armory maintenance",
192
+ "winter survival"
193
+ ],
194
+ "quotes": [
195
+ "Leaders never really know, but they keep their doubts from their people.",
196
+ "Sometimes our deepest hate is for the things we cannot change about ourselves.",
197
+ "I'm not desperate. I'm hopeful. For the first time in a long time."
198
+ ],
199
+ "gender": "male",
200
+ "symbol": "βš”οΈ",
201
+ "color": "#374151",
202
+ "emailDomains": [
203
+ "kaer-morhen.net",
204
+ "witcher-guild.org",
205
+ "school-of-wolf.net"
206
+ ]
207
+ },
208
+ {
209
+ "id": "cahir",
210
+ "firstName": "Cahir",
211
+ "lastName": "Mawr",
212
+ "usernames": [
213
+ "nilfgaardian_eagle",
214
+ "winged_knight",
215
+ "captain_of_lancers",
216
+ "the_failed_savior",
217
+ "cintra_black_knight"
218
+ ],
219
+ "profession": "Nilfgaardian officer",
220
+ "interests": [
221
+ "military tactics",
222
+ "campaign logistics",
223
+ "imperial history",
224
+ "knighthood",
225
+ "cavalry drills"
226
+ ],
227
+ "quotes": [
228
+ "I am Commander Mawr Dyffryn aep Ceallach. Who the fuck are you?",
229
+ "Desperate measures."
230
+ ],
231
+ "gender": "male",
232
+ "symbol": "πŸ¦…",
233
+ "color": "#1f2937",
234
+ "emailDomains": [
235
+ "nilfgaard-empire.gov",
236
+ "emperors-lancers.net",
237
+ "imperial-honor.com"
238
+ ]
239
+ },
240
+ {
241
+ "id": "vilgefortz",
242
+ "firstName": "Vilgefortz",
243
+ "lastName": "of Roggeveen",
244
+ "usernames": [
245
+ "the_left_hand",
246
+ "sodden_staff",
247
+ "chapter_coup",
248
+ "roggeveen_heir",
249
+ "chaos_captain"
250
+ ],
251
+ "profession": "Sorcerer",
252
+ "interests": [
253
+ "combat magic",
254
+ "military strategy",
255
+ "court intrigue",
256
+ "Brotherhood politics",
257
+ "arcane research"
258
+ ],
259
+ "quotes": [
260
+ "This was supposed to be a lesson. But you were mistaken, witcher.",
261
+ "You have made a mistake. You mistook the stars reflected in the surface of the lake at night for the heavens."
262
+ ],
263
+ "gender": "male",
264
+ "symbol": "πŸ”₯",
265
+ "color": "#991b1b",
266
+ "emailDomains": [
267
+ "roggeveen-magic.net",
268
+ "chaos-sorcery.org",
269
+ "sorcerers-strategy.net"
270
+ ]
271
+ }
272
+ ]
@@ -0,0 +1,13 @@
1
+ {
2
+ "id": "the-witcher",
3
+ "name": "The Witcher",
4
+ "genre": ["fantasy", "drama", "action"],
5
+ "description": "On the Continent, Geralt of Rivia, a mutated monster hunter, is drawn into a political conflict involving mages, empires, and Ciri, a princess with Elder Blood.",
6
+ "tmdbId": 71912,
7
+ "mediaType": "tv",
8
+ "year": 2019,
9
+ "rating": 7.9,
10
+ "networks": ["Netflix"],
11
+ "posterPath": "/AoGsDM02UVt0npBA8OvpDcZbaMi.jpg",
12
+ "backdropPath": "/foGkPxpw9h8zln81j63mix5B7m8.jpg"
13
+ }
@@ -0,0 +1,26 @@
1
+ [
2
+ {
3
+ "city": "Kattegat",
4
+ "state": "Kattegat"
5
+ },
6
+ {
7
+ "city": "Paris",
8
+ "state": "Île-de-France",
9
+ "country": "FR"
10
+ },
11
+ {
12
+ "city": "Wessex",
13
+ "state": "Wessex",
14
+ "country": "GB"
15
+ },
16
+ {
17
+ "city": "York",
18
+ "state": "Northumbria",
19
+ "country": "GB"
20
+ },
21
+ {
22
+ "city": "Hedeby",
23
+ "state": "Schleswig",
24
+ "country": "DE"
25
+ }
26
+ ]