-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtechtree-data.js
79 lines (79 loc) · 2.03 KB
/
techtree-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
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
var bonuses = {
"performance": {
"title": "Performance"
},
"clean-code": {
"title": "Verbesserte Entwicklung"
},
"stability": {
"title": "Verbesserte Stabilität"
},
"features": {
"title": "Neue Funktionen",
},
"standards":{
"title":"Standardisierung",
},
"redundancy":{
"title": "Ausfallsicherheit",
},
"user-experience":{
"title": "Bessere Nutzererfahrung",
},
"growth":{
"title": "Wachstum"
}
}
var techItems = {
"v44": {
"title": "v4.4",
"costs": 0,
"progress": 1,
"bonuses": ["performance", "clean-code"]
},
"v45": {
"title": "v4.5",
"progress": 0.9,
"costs":4,
"dependsOn": ["v44"],
"bonuses": ["performance", "clean-code"]
},
"bootstrap":{
"title": "Bootstrap-Theme",
"dependsOn": ["v45"],
"costs":4,
"bonuses":["standards"]
},
"new-inline-editor":{
"title": "Neuer Inline-Editor",
"progress":0.05,
"dependsOn": ["v45"],
"bonuses":["user-experience", "features"],
"costs":30
},
"new-ui":{
"title": "Neues Interface",
"dependsOn": ["bootstrap"],
"bonuses":["user-experience"]
},
"continues-delivery":{
"title": "Continues Delivery",
"dependsOn": ["v45"],
"bonuses":["standards"]
},
"horizontal-scaling":{
"title": "Horizontale Skalierung",
"dependsOn": ["v45", "continues-delivery"],
"bonuses": ["redundancy","growth"]
},
"ab-tests":{
"title": "AB-Tests",
"dependsOn":["horizontal-scaling"],
"bonuses": ["user-experience"]
},
"geo-redundance":{
"title": "GEO-Redundanz",
"dependsOn":["horizontal-scaling"],
"bonuses": ["redundancy","growth"]
}
};