-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGuides.js
More file actions
84 lines (83 loc) · 3.57 KB
/
Guides.js
File metadata and controls
84 lines (83 loc) · 3.57 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
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
let Guides = [
{
title: 'Max Damage Build',
createdAt: '15-01-2021',
rating: '97',
id: 'J1',
hero: 'Juggernaut',
itemGroups: [
{
groupName: 'Starting Items',
items: ['bootsOfSpeed']
},
{
groupName: 'Rush first',
items: ['maelstrom']
},
{
groupName: 'Need for final fight',
items: ['euls']
},
{
groupName: 'Final Build',
items: ['powerTreads', 'mjollnir', 'euls', 'daedalus', 'butterfly', 'heart']
}
],
selectedTalents: ['+475 health', '+160 Blade Fury DPS', '+20 Attack Speed', '20 Movement Speed'],
levels: [0, 1, 2, 0, 0, 3, 0, 1, 1, 4, 2, 3, 2, 1, 4, 2, 5, 3,],
shards: ['letItRip', 'studiedTheBlade', 'maskOfLeeroy', 'helicopter', 'helicopter', 'helicopter'],
shardCombinations: [
{ combination: ['letItRip', 'studiedTheBlade'], description: 'Help! Help! I’m being repressed!' },
{ combination: ['maskOfLeeroy', 'helicopter'], description: 'Alright, but apart from the sanitation, the medicine, education, wine, public order, irrigation, roads, the fresh-water system, and public health, what have the Romans ever done for us?' }
]
},
{
title: 'Another Valid Build',
createdAt: '15-01-2021',
rating: '97',
id: 'J2',
hero: 'Juggernaut',
itemGroups: [
{
groupName: 'Starting Items',
items: ['bracer']
},
{
groupName: 'Final Build',
items: ['daedalus', 'butterfly', 'heart']
}
],
selectedTalents: ['+475 health', '+160 Blade Fury DPS', '+20 Attack Speed', '20 Movement Speed'],
levels: [0, 1, 2, 0, 0, 3, 0, 1, 1, 4, 2, 3, 2, 1, 4, 2, 5, 3,],
shards: ['letItRip', 'studiedTheBlade', 'maskOfLeeroy', 'helicopter', 'helicopter', 'helicopter'],
shardCombinations: [
{ combination: ['letItRip', 'studiedTheBlade'], description: 'Help! Help! I’m being repressed!' },
{ combination: ['maskOfLeeroy', 'helicopter'], description: 'Alright, but apart from the sanitation, the medicine, education, wine, public order, irrigation, roads, the fresh-water system, and public health, what have the Romans ever done for us?' }
]
},
{
title: 'Another Valid Build',
createdAt: '15-01-2021',
rating: '97',
id: 'J2',
hero: 'Juggernaut',
itemGroups: [
{
groupName: 'Starting Items',
items: ['bracer']
},
{
groupName: 'Final Build',
items: ['daedalus', 'butterfly', 'heart']
}
],
selectedTalents: ['+475 health', '+160 Blade Fury DPS', '+20 Attack Speed', '20 Movement Speed'],
levels: [0, 1, 2, 0, 0, 3, 0, 1, 1, 4, 2, 3, 2, 1, 4, 2, 5, 3,],
shards: ['letItRip', 'studiedTheBlade', 'maskOfLeeroy', 'helicopter', 'helicopter', 'helicopter'],
shardCombinations: [
{ combination: ['letItRip', 'studiedTheBlade'], description: 'Help! Help! I’m being repressed!' },
{ combination: ['maskOfLeeroy', 'helicopter'], description: 'Alright, but apart from the sanitation, the medicine, education, wine, public order, irrigation, roads, the fresh-water system, and public health, what have the Romans ever done for us?' }
]
}
]
module.exports = Guides