-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdata.js
51 lines (49 loc) · 1.14 KB
/
data.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
const creatures = {
hero:{
Garen:{
hp:1400 ,
DiceCount:1 ,
name:"garen",
elementId:"hero",
image:"./img/Garen.jpg"
},
XinZhao:{
hp:260 ,
DiceCount: 5,
name:"xin Zhao",
elementId : "hero",
image:"./img/XinZhao.jpg"
},
Vayne:{
hp:100 ,
DiceCount:14 ,
name:"vayne",
elementId:"hero",
image:"./img/Vayne.jpg"
}
},
monster:{
Skeletons:{
hp:50 ,
DiceCount:1 ,
name:"skeleton",
elementId:"monster",
image:"./img/skeleton.jpg"
},
KarthusTHEMinister:{
hp:100 ,
DiceCount: 2,
name: "karthus",
elementId: "monster",
image:"./img/KarthusTHEMinister.jpg"
},
Mordkaiser:{
hp:400 ,
DiceCount:1 ,
name:"mordkaiser",
elementId:"monster",
image:"./img/Mordekaiser.jpg"
}
}
}
export default creatures