-
Notifications
You must be signed in to change notification settings - Fork 11
/
consts.js
54 lines (46 loc) · 1.01 KB
/
consts.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
const MEGASHIPS = [
'Mega ship',
// 'Fleet Carrier', // Ignore fleet carriers for now
'Installation',
'Capital Ship Dock',
'Carrier Construction Dock'
]
const SPACE_STATIONS = [
'Coriolis Starport',
'Ocellus Starport',
'Orbis Starport',
'Asteroid base',
'Outpost'
]
// Ports with services like shipyards
const SURFACE_PORTS = [
'Planetary Port',
'Planetary Outpost',
'Workshop'
]
// Bases in Horizons
const PLANETARY_OUTPOSTS = [
'Military Outpost',
'Scientific Outpost',
'Commercial Outpot',
'Mining Outpost',
'Industrial Outpost',
'Civilian Outpost',
'Planetary Settlement'
]
// Bases in Odyssey
const SETTLEMENTS = ['Odyssey Settlement']
// All types of ground facility
const PLANETARY_BASES = SURFACE_PORTS.concat(PLANETARY_OUTPOSTS).concat(SETTLEMENTS)
const UNKNOWN_VALUE = 'Unknown'
const SOL_RADIUS_IN_KM = 696340
module.exports = {
MEGASHIPS,
SPACE_STATIONS,
SURFACE_PORTS,
PLANETARY_OUTPOSTS,
SETTLEMENTS,
PLANETARY_BASES,
UNKNOWN_VALUE,
SOL_RADIUS_IN_KM
}