-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcharacters.js
297 lines (295 loc) · 9.42 KB
/
characters.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
const characters = [
{
"fullName": "Harry James Potter",
"nickname": "Harry",
"hogwartsHouse": "Gryffindor",
"interpretedBy": "Daniel Radcliffe",
"children": [
"James Sirius Potter",
"Albus Severus Potter",
"Lily Luna Potter"
],
"image": "https://raw.githubusercontent.com/fedeperin/potterapi/main/public/images/characters/harry_potter.png",
"birthdate": "Jul 31, 1980",
"index": 0
},
{
"fullName": "Hermione Jean Granger",
"nickname": "Hermione",
"hogwartsHouse": "Gryffindor",
"interpretedBy": "Emma Watson",
"children": [
"Rose Granger-Weasley",
"Hugo Granger-Weasley"
],
"image": "https://raw.githubusercontent.com/fedeperin/potterapi/main/public/images/characters/hermione_granger.png",
"birthdate": "Sep 19, 1979",
"index": 1
},
{
"fullName": "Ron Weasley",
"nickname": "Ron",
"hogwartsHouse": "Gryffindor",
"interpretedBy": "Rupert Grint",
"children": [
"Rose Granger-Weasley",
"Hugo Granger-Weasley"
],
"image": "https://raw.githubusercontent.com/fedeperin/potterapi/main/public/images/characters/ron_weasley.png",
"birthdate": "Mar 1, 1980",
"index": 2
},
{
"fullName": "Fred Weasley",
"nickname": "Fred",
"hogwartsHouse": "Gryffindor",
"interpretedBy": "James Phelps",
"children": [],
"image": "https://raw.githubusercontent.com/fedeperin/potterapi/main/public/images/characters/fred_weasley.png",
"birthdate": "Apr 1, 1978",
"index": 3
},
{
"fullName": "George Weasley",
"nickname": "George",
"hogwartsHouse": "Gryffindor",
"interpretedBy": "Oliver Phelps",
"children": [],
"image": "https://raw.githubusercontent.com/fedeperin/potterapi/main/public/images/characters/george_weasley.png",
"birthdate": "Apr 1, 1978",
"index": 4
},
{
"fullName": "Bill Weasley",
"nickname": "Bill",
"hogwartsHouse": "Gryffindor",
"interpretedBy": "Domhnall Gleeson",
"children": [],
"image": "https://raw.githubusercontent.com/fedeperin/potterapi/main/public/images/characters/bill_weasley.png",
"birthdate": "Nov 29, 1970",
"index": 5
},
{
"fullName": "Percy Weasley",
"nickname": "Percy",
"hogwartsHouse": "Gryffindor",
"interpretedBy": "Chris Rankin",
"children": [],
"image": "https://raw.githubusercontent.com/fedeperin/potterapi/main/public/images/characters/percy_weasley.png",
"birthdate": "Aug 22, 1976",
"index": 6
},
{
"fullName": "Charlie Weasley",
"nickname": "Charlie",
"hogwartsHouse": "Gryffindor",
"interpretedBy": "",
"children": [],
"image": "https://raw.githubusercontent.com/fedeperin/potterapi/main/public/images/characters/charlie_weasley.png",
"birthdate": "Dec 12, 1972",
"index": 7
},
{
"fullName": "Ginny Weasley",
"nickname": "Ginny",
"hogwartsHouse": "Gryffindor",
"interpretedBy": "Bonnie Right",
"children": [
"James Sirius Potter",
"Albus Severus Potter",
"Lily Luna Potter"
],
"image": "https://raw.githubusercontent.com/fedeperin/potterapi/main/public/images/characters/ginny_weasley.png",
"birthdate": "Aug 11, 1981",
"index": 8
},
{
"fullName": "Molly Weasley",
"nickname": "Molly",
"hogwartsHouse": "Gryffindor",
"interpretedBy": "Julie Walters",
"children": [
"Ron Weasley",
"Fred Weasley",
"George Weasley",
"Bill Weasley",
"Percy Weasley",
"Charlie Weasley",
"Ginny Weasley"
],
"image": "https://raw.githubusercontent.com/fedeperin/potterapi/main/public/images/characters/molly_weasley.png",
"birthdate": "Oct 30, 1949",
"index": 9
},
{
"fullName": "Arthur Weasley",
"nickname": "Arthur",
"hogwartsHouse": "Gryffindor",
"interpretedBy": "Mark Williams",
"children": [
"Ron Weasley",
"Fred Weasley",
"George Weasley",
"Bill Weasley",
"Percy Weasley",
"Charlie Weasley",
"Ginny Weasley"
],
"image": "https://raw.githubusercontent.com/fedeperin/potterapi/main/public/images/characters/arthur_weasley.png",
"birthdate": "Feb 6, 1950",
"index": 10
},
{
"fullName": "Neville Longbottom",
"nickname": "Neville",
"hogwartsHouse": "Gryffindor",
"interpretedBy": "Matthew Lewis",
"children": [],
"image": "https://raw.githubusercontent.com/fedeperin/potterapi/main/public/images/characters/neville_longbottom.png",
"birthdate": "Jul 30, 1980",
"index": 11
},
{
"fullName": "Luna Lovegood",
"nickname": "Luna",
"hogwartsHouse": "Ravenclaw",
"interpretedBy": "Evanna Lynch",
"children": [],
"image": "https://raw.githubusercontent.com/fedeperin/potterapi/main/public/images/characters/luna_lovegood.png",
"birthdate": "Feb 13, 1981",
"index": 12
},
{
"fullName": "Draco Malfoy",
"nickname": "Draco",
"hogwartsHouse": "Slytherin",
"interpretedBy": "Tom Felton",
"children": [
"Scorpius Malfoy"
],
"image": "https://raw.githubusercontent.com/fedeperin/potterapi/main/public/images/characters/draco_malfoy.png",
"birthdate": "Jun 5, 1980",
"index": 13
},
{
"fullName": "Albus Percival Wulfric Brian Dumbledore",
"nickname": "Dumbledore",
"hogwartsHouse": "Gryffindor",
"interpretedBy": "Richard Harris",
"children": [],
"image": "https://raw.githubusercontent.com/fedeperin/potterapi/main/public/images/characters/albus_dumbledore.png",
"birthdate": "Aug 29, 1881",
"index": 14
},
{
"fullName": "Minerva McGonagall",
"nickname": "Minerva",
"hogwartsHouse": "Gryffindor",
"interpretedBy": "Maggie Smith",
"children": [],
"image": "https://raw.githubusercontent.com/fedeperin/potterapi/main/public/images/characters/minerva_mcgonagall.png",
"birthdate": "Oct 4, 1935",
"index": 15
},
{
"fullName": "Remus Lupin",
"nickname": "Lupin",
"hogwartsHouse": "Gryffindor",
"interpretedBy": "David Thewils",
"children": [
"Ted Lupin"
],
"image": "https://raw.githubusercontent.com/fedeperin/potterapi/main/public/images/characters/remus_lupin.png",
"birthdate": "Mar 10, 1960",
"index": 16
},
{
"fullName": "Rubeus Hagrid",
"nickname": "Hagrid",
"hogwartsHouse": "Gryffindor",
"interpretedBy": "Robbie Coltrane",
"children": [],
"image": "https://raw.githubusercontent.com/fedeperin/potterapi/main/public/images/characters/rubeus_hagrid.png",
"birthdate": "Dec 6, 1928",
"index": 17
},
{
"fullName": "Sirius Black",
"nickname": "Sirius",
"hogwartsHouse": "Gryffindor",
"interpretedBy": "Gary Oldman",
"children": [],
"image": "https://raw.githubusercontent.com/fedeperin/potterapi/main/public/images/characters/sirius_black.png",
"birthdate": "Nov 3, 1959",
"index": 18
},
{
"fullName": "Severus Snape",
"nickname": "Snape",
"hogwartsHouse": "Slytherin",
"interpretedBy": "Alan Rickman",
"children": [],
"image": "https://raw.githubusercontent.com/fedeperin/potterapi/main/public/images/characters/severus_snape.png",
"birthdate": "Jan 9, 1960",
"index": 19
},
{
"fullName": "Bellatrix Lestrange",
"nickname": "Bella",
"hogwartsHouse": "Slytherin",
"interpretedBy": "Helena Bonham Carter",
"children": [
"Delphi"
],
"image": "https://raw.githubusercontent.com/fedeperin/potterapi/main/public/images/characters/bellatrix_lestrange.png",
"birthdate": "Dec 13, 1951",
"index": 20
},
{
"fullName": "Lord Voldemort",
"nickname": "Voldemort",
"hogwartsHouse": "Slytherin",
"interpretedBy": "Ralph Fiennes",
"children": [
"Delphi"
],
"image": "https://raw.githubusercontent.com/fedeperin/potterapi/main/public/images/characters/lord_voldemort.png",
"birthdate": "Dec 31, 1926",
"index": 21
},
{
"fullName": "Cedric Diggory",
"nickname": "Cedric",
"hogwartsHouse": "Hufflepuff",
"interpretedBy": "Robert Pattinson",
"children": [],
"image": "https://raw.githubusercontent.com/fedeperin/potterapi/main/public/images/characters/cedric_diggory.png",
"birthdate": "Sep 29, 1977",
"index": 22
},
{
"fullName": "Nymphadora Tonks",
"nickname": "Tonks",
"hogwartsHouse": "Hufflepuff",
"interpretedBy": "Natalia Tena",
"children": [
"Ted Lupin"
],
"image": "https://raw.githubusercontent.com/fedeperin/potterapi/main/public/images/characters/nymphadora_tonks.png",
"birthdate": "Dec 25, 1972",
"index": 23
},
{
"fullName": "James Potter",
"nickname": "James",
"hogwartsHouse": "Gryffindor",
"interpretedBy": "Adrian Rawlins",
"children": [
"Harry Potter"
],
"image": "https://raw.githubusercontent.com/fedeperin/potterapi/main/public/images/characters/james_potter.png",
"birthdate": "Mar 27, 1960",
"index": 24
}
]
export default characters;