-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuildings.js
59 lines (58 loc) · 993 Bytes
/
buildings.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
const BUILDINGS = Object.freeze({
1: {
name: 'Mine de métal',
base: {
production: 30,
consumption: 0,
metal: 60,
crystal: 15,
deutrium: 0,
energy: 10,
},
},
2: {
name: 'Mine de cristal',
base: {
production: 20,
consumption: 0,
metal: 48,
crystal: 24,
deutrium: 0,
energy: 10,
},
},
3: {
name: 'Synthétiseur de deutérium',
base: {
production: 10,
consumption: 0,
metal: 225,
crystal: 75,
deutrium: 0,
energy: 20,
},
},
4: {
name: 'Centrale électrique solaire',
base: {
production: 20,
consumption: 0,
metal: 75,
crystal: 30,
deutrium: 0,
energy: 0,
},
},
5: {
name: 'Centrale électrique de fusion',
base: {
production: 30,
consumption: 10,
metal: 900,
crystal: 360,
deutrium: 180,
energy: 0,
},
},
});
export default BUILDINGS;