-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstaticData.js
89 lines (87 loc) · 2.91 KB
/
staticData.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
80
81
82
83
84
85
86
87
88
89
var staticData = {
// DST fleet hangar capacity for all levels of the Transport Skill
dstCargo: [0, 52500, 55000, 57500, 60000, 62500],
shipGroupIDs: {
25: [2500, "Frigate"],
26: [10000, "Cruiser"],
27: [50000, "Battleship"],
28: [20000, "Industrial"],
30: [13000000, "Titan"],
31: [500, "Shuttle"],
237: [2500, "Rookie Ship"],
324: [2500, "Assault Frigate"],
358: [10000, "Heavy Assault Cruiser"],
380: [10000, "Deep Space Transport"],
419: [15000, "Combat Battlecruiser"],
420: [5000, "Destroyer"],
463: [3750, "Mining Barge"],
485: [1300000, "Dreadnought"],
513: [1300000, "Freighter"],
540: [15000, "Command Ship"],
541: [5000, "Interdictor"],
543: [3750, "Exhumer"],
547: [1300000, "Carrier"],
659: [13000000, "Supercarrier"],
830: [2500, "Covert Ops"],
831: [2500, "Interceptor"],
832: [10000, "Logistics"],
833: [10000, "Force Recon Ship"],
834: [2500, "Stealth Bomber"],
883: [1300000, "Capital Industrial Ship"],
893: [2500, "Electronic Attack Ship"],
894: [10000, "Heavy Interdiction Cruiser"],
898: [50000, "Black Ops"],
900: [50000, "Marauder"],
902: [1300000, "Jump Freighter"],
906: [10000, "Combat Recon Ship"],
941: [500000, "Industrial Command Ship"],
963: [5000, "Strategic Cruiser"],
1022: [500, "Prototype Exploration Ship"],
1201: [15000, "Attack Battlecruiser"],
1202: [10000, "Blockade Runner"],
1283: [2500, "Expedition Frigate"],
1305: [5000, "Tactical Destroyer"]
},
shipPackagedMasses: {
10000: [
"Blockade Runner",
"Combat Recon Ship",
"Cruiser",
"Deep Space Transport",
"Force Recon Ship",
"Heavy Assault Cruiser",
"Heavy Interdiction Cruiser",
"Logistics"
],
1300000: [
"Capital Industrial Ship",
"Carrier",
"Dreadnought",
"Freighter",
"Jump Freighter"
],
13000000: ["Supercarrier", "Titan"],
15000: ["Attack Battlecruiser", "Combat Battlecruiser", "Command Ship"],
20000: ["Industrial"],
2500: [
"Assault Frigate",
"Covert Ops",
"Electronic Attack Ship",
"Expedition Frigate",
"Frigate",
"Interceptor",
"Rookie Ship",
"Stealth Bomber"
],
3750: ["Exhumer", "Mining Barge"],
500: ["Prototype Exploration Ship", "Shuttle"],
5000: [
"Destroyer",
"Interdictor",
"Strategic Cruiser",
"Tactical Destroyer"
],
50000: ["Battleship", "Black Ops", "Marauder"],
500000: ["Industrial Command Ship"]
}
};