-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathheroes-data.js
More file actions
57 lines (57 loc) · 1.58 KB
/
heroes-data.js
File metadata and controls
57 lines (57 loc) · 1.58 KB
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
// Mock hero data for exercises
const heroes = [
{
id: 1,
name: 'Iron Man',
power: 'Genius intellect, powered armor suit',
image:
'https://cdn.jsdelivr.net/gh/akabab/[email protected]/api/images/sm/346-iron-man.jpg',
realName: 'Tony Stark',
team: 'Avengers',
},
{
id: 2,
name: 'Spider-Man',
power: 'Wall-crawling, super strength, spider-sense',
image:
'https://cdn.jsdelivr.net/gh/akabab/[email protected]/api/images/sm/620-spider-man.jpg',
realName: 'Peter Parker',
team: 'Avengers',
},
{
id: 3,
name: 'Wonder Woman',
power: 'Super strength, speed, combat skills',
image:
'https://cdn.jsdelivr.net/gh/akabab/[email protected]/api/images/sm/720-wonder-woman.jpg',
realName: 'Diana Prince',
team: 'Justice League',
},
{
id: 4,
name: 'Batman',
power: 'Genius intellect, martial arts, detective skills',
image:
'https://cdn.jsdelivr.net/gh/akabab/[email protected]/api/images/sm/70-batman.jpg',
realName: 'Bruce Wayne',
team: 'Justice League',
},
{
id: 5,
name: 'Black Panther',
power: 'Enhanced strength, speed, vibranium suit',
image:
'https://cdn.jsdelivr.net/gh/akabab/[email protected]/api/images/sm/106-black-panther.jpg',
realName: "T'Challa",
team: 'Avengers',
},
{
id: 6,
name: 'Captain Marvel',
power: 'Flight, energy projection, super strength',
image:
'https://cdn.jsdelivr.net/gh/akabab/[email protected]/api/images/sm/157-captain-marvel.jpg',
realName: 'Carol Danvers',
team: 'Avengers',
},
];