@shipload/sdk 1.0.0-next.3 → 1.0.0-next.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/shipload.d.ts +203 -97
- package/lib/shipload.js +762 -419
- package/lib/shipload.js.map +1 -1
- package/lib/shipload.m.js +752 -418
- package/lib/shipload.m.js.map +1 -1
- package/package.json +1 -1
- package/src/contracts/server.ts +54 -1
- package/src/data/capabilities.ts +5 -330
- package/src/data/capability-formulas.ts +68 -0
- package/src/data/colors.ts +1 -0
- package/src/data/items.json +245 -0
- package/src/data/metadata.ts +44 -1
- package/src/data/recipes.json +6 -16
- package/src/derivation/capability-mappings.ts +120 -0
- package/src/derivation/resources.ts +27 -19
- package/src/entities/container.ts +23 -8
- package/src/entities/ship-deploy.ts +78 -41
- package/src/entities/ship.ts +17 -0
- package/src/entities/warehouse.ts +8 -0
- package/src/index-module.ts +32 -18
- package/src/managers/actions.ts +24 -1
- package/src/nft/description.ts +25 -6
- package/src/resolution/resolve-item.ts +14 -9
- package/src/scheduling/accessor.ts +4 -0
- package/src/scheduling/projection.ts +8 -0
- package/src/scheduling/schedule.ts +15 -1
- package/src/subscriptions/manager.ts +37 -1
- package/src/travel/travel.ts +58 -1
- package/src/types.ts +3 -0
package/src/data/capabilities.ts
CHANGED
|
@@ -8,7 +8,6 @@ export interface StatMapping {
|
|
|
8
8
|
stat: string
|
|
9
9
|
capability: string
|
|
10
10
|
attribute: string
|
|
11
|
-
rationale: string
|
|
12
11
|
}
|
|
13
12
|
|
|
14
13
|
export const capabilityNames: string[] = [
|
|
@@ -27,6 +26,11 @@ export const capabilityNames: string[] = [
|
|
|
27
26
|
export const capabilityAttributes: CapabilityAttribute[] = [
|
|
28
27
|
{capability: 'Hull', attribute: 'mass', description: 'Total mass of the hull'},
|
|
29
28
|
{capability: 'Storage', attribute: 'capacity', description: 'Maximum mass that can be stored'},
|
|
29
|
+
{
|
|
30
|
+
capability: 'Storage',
|
|
31
|
+
attribute: 'bonus',
|
|
32
|
+
description: 'Capacity bonus added by an installed Storage module',
|
|
33
|
+
},
|
|
30
34
|
{capability: 'Movement', attribute: 'thrust', description: 'Propulsion force'},
|
|
31
35
|
{capability: 'Movement', attribute: 'drain', description: 'Energy consumed per movement'},
|
|
32
36
|
{capability: 'Energy', attribute: 'capacity', description: 'Maximum energy storage'},
|
|
@@ -65,323 +69,6 @@ export const capabilityAttributes: CapabilityAttribute[] = [
|
|
|
65
69
|
},
|
|
66
70
|
]
|
|
67
71
|
|
|
68
|
-
export const statMappings: StatMapping[] = [
|
|
69
|
-
{
|
|
70
|
-
stat: 'Strength',
|
|
71
|
-
capability: 'Gathering',
|
|
72
|
-
attribute: 'yield',
|
|
73
|
-
rationale: 'Raw mechanical force drives faster gathering',
|
|
74
|
-
},
|
|
75
|
-
{
|
|
76
|
-
stat: 'Strength',
|
|
77
|
-
capability: 'Storage',
|
|
78
|
-
attribute: 'capacity',
|
|
79
|
-
rationale: 'Stronger walls hold more capacity per mass',
|
|
80
|
-
},
|
|
81
|
-
{
|
|
82
|
-
stat: 'Strength',
|
|
83
|
-
capability: 'Launch',
|
|
84
|
-
attribute: 'capacity',
|
|
85
|
-
rationale: 'Stronger housing handles larger launch loads',
|
|
86
|
-
},
|
|
87
|
-
{
|
|
88
|
-
stat: 'Tolerance',
|
|
89
|
-
capability: 'Movement',
|
|
90
|
-
attribute: 'thrust',
|
|
91
|
-
rationale: 'Engine components that tolerate more can push harder',
|
|
92
|
-
},
|
|
93
|
-
{
|
|
94
|
-
stat: 'Tolerance',
|
|
95
|
-
capability: 'Energy',
|
|
96
|
-
attribute: 'recharge',
|
|
97
|
-
rationale: 'Generator housing withstands stress for faster recharge',
|
|
98
|
-
},
|
|
99
|
-
{
|
|
100
|
-
stat: 'Tolerance',
|
|
101
|
-
capability: 'Gathering',
|
|
102
|
-
attribute: 'depth',
|
|
103
|
-
rationale: 'Housing withstands pressure/heat at extreme depths',
|
|
104
|
-
},
|
|
105
|
-
{
|
|
106
|
-
stat: 'Tolerance',
|
|
107
|
-
capability: 'Warp',
|
|
108
|
-
attribute: 'range',
|
|
109
|
-
rationale: 'Warp drive housing withstands extreme forces',
|
|
110
|
-
},
|
|
111
|
-
{
|
|
112
|
-
stat: 'Density',
|
|
113
|
-
capability: 'Hull',
|
|
114
|
-
attribute: 'mass',
|
|
115
|
-
rationale: 'Lighter metal = lighter hull',
|
|
116
|
-
},
|
|
117
|
-
{
|
|
118
|
-
stat: 'Density',
|
|
119
|
-
capability: 'Loader',
|
|
120
|
-
attribute: 'mass',
|
|
121
|
-
rationale: 'Lighter metal = lighter loader units',
|
|
122
|
-
},
|
|
123
|
-
{
|
|
124
|
-
stat: 'Density',
|
|
125
|
-
capability: 'Movement',
|
|
126
|
-
attribute: 'drain',
|
|
127
|
-
rationale: 'Lighter components require less energy to move',
|
|
128
|
-
},
|
|
129
|
-
{
|
|
130
|
-
stat: 'Conductivity',
|
|
131
|
-
capability: 'Movement',
|
|
132
|
-
attribute: 'drain',
|
|
133
|
-
rationale: 'Efficient energy transfer reduces movement energy cost',
|
|
134
|
-
},
|
|
135
|
-
{
|
|
136
|
-
stat: 'Conductivity',
|
|
137
|
-
capability: 'Gathering',
|
|
138
|
-
attribute: 'drain',
|
|
139
|
-
rationale: 'Efficient energy transfer reduces gathering energy cost',
|
|
140
|
-
},
|
|
141
|
-
{
|
|
142
|
-
stat: 'Conductivity',
|
|
143
|
-
capability: 'Crafter',
|
|
144
|
-
attribute: 'drain',
|
|
145
|
-
rationale: 'Efficient energy transfer reduces crafting energy cost',
|
|
146
|
-
},
|
|
147
|
-
{
|
|
148
|
-
stat: 'Conductivity',
|
|
149
|
-
capability: 'Energy',
|
|
150
|
-
attribute: 'recharge',
|
|
151
|
-
rationale: 'Better conductivity speeds energy flow during recharge',
|
|
152
|
-
},
|
|
153
|
-
{
|
|
154
|
-
stat: 'Ductility',
|
|
155
|
-
capability: 'Crafter',
|
|
156
|
-
attribute: 'quality',
|
|
157
|
-
rationale: 'Precise shaping enables tighter crafting tolerances',
|
|
158
|
-
},
|
|
159
|
-
{
|
|
160
|
-
stat: 'Ductility',
|
|
161
|
-
capability: 'Gathering',
|
|
162
|
-
attribute: 'yield',
|
|
163
|
-
rationale: 'Precisely shaped conduit components gather faster',
|
|
164
|
-
},
|
|
165
|
-
{
|
|
166
|
-
stat: 'Ductility',
|
|
167
|
-
capability: 'Storage',
|
|
168
|
-
attribute: 'capacity',
|
|
169
|
-
rationale: 'Precision-formed container walls maximize volume',
|
|
170
|
-
},
|
|
171
|
-
{
|
|
172
|
-
stat: 'Ductility',
|
|
173
|
-
capability: 'Loader',
|
|
174
|
-
attribute: 'mass',
|
|
175
|
-
rationale: 'Precision-formed precious metal reduces loader unit mass',
|
|
176
|
-
},
|
|
177
|
-
{
|
|
178
|
-
stat: 'Reflectivity',
|
|
179
|
-
capability: 'Gathering',
|
|
180
|
-
attribute: 'depth',
|
|
181
|
-
rationale: 'Reflective heat shielding protects equipment at depth',
|
|
182
|
-
},
|
|
183
|
-
{
|
|
184
|
-
stat: 'Reflectivity',
|
|
185
|
-
capability: 'Launch',
|
|
186
|
-
attribute: 'range',
|
|
187
|
-
rationale: 'Reflective surfaces focus electromagnetic launch energy',
|
|
188
|
-
},
|
|
189
|
-
{
|
|
190
|
-
stat: 'Volatility',
|
|
191
|
-
capability: 'Gathering',
|
|
192
|
-
attribute: 'yield',
|
|
193
|
-
rationale: 'Energy release powers faster gathering',
|
|
194
|
-
},
|
|
195
|
-
{
|
|
196
|
-
stat: 'Volatility',
|
|
197
|
-
capability: 'Movement',
|
|
198
|
-
attribute: 'thrust',
|
|
199
|
-
rationale: 'Energy release drives propulsion force',
|
|
200
|
-
},
|
|
201
|
-
{
|
|
202
|
-
stat: 'Volatility',
|
|
203
|
-
capability: 'Loader',
|
|
204
|
-
attribute: 'thrust',
|
|
205
|
-
rationale: 'Energy release powers loader motors',
|
|
206
|
-
},
|
|
207
|
-
{
|
|
208
|
-
stat: 'Volatility',
|
|
209
|
-
capability: 'Launch',
|
|
210
|
-
attribute: 'capacity',
|
|
211
|
-
rationale: 'Energy release enables launching heavier payloads',
|
|
212
|
-
},
|
|
213
|
-
{
|
|
214
|
-
stat: 'Reactivity',
|
|
215
|
-
capability: 'Crafter',
|
|
216
|
-
attribute: 'speed',
|
|
217
|
-
rationale: 'Reactive gases accelerate chemical/thermal processing',
|
|
218
|
-
},
|
|
219
|
-
{
|
|
220
|
-
stat: 'Reactivity',
|
|
221
|
-
capability: 'Gathering',
|
|
222
|
-
attribute: 'speed',
|
|
223
|
-
rationale: 'Reactive gases manage heat/friction during gathering',
|
|
224
|
-
},
|
|
225
|
-
{
|
|
226
|
-
stat: 'Reactivity',
|
|
227
|
-
capability: 'Launch',
|
|
228
|
-
attribute: 'drain',
|
|
229
|
-
rationale: 'Reactive gas medium reduces electromagnetic resistance',
|
|
230
|
-
},
|
|
231
|
-
{
|
|
232
|
-
stat: 'Thermal',
|
|
233
|
-
capability: 'Crafter',
|
|
234
|
-
attribute: 'quality',
|
|
235
|
-
rationale: 'Precise thermal control during fabrication',
|
|
236
|
-
},
|
|
237
|
-
{
|
|
238
|
-
stat: 'Thermal',
|
|
239
|
-
capability: 'Gathering',
|
|
240
|
-
attribute: 'drain',
|
|
241
|
-
rationale: 'Thermal management reduces energy waste during gathering',
|
|
242
|
-
},
|
|
243
|
-
{
|
|
244
|
-
stat: 'Thermal',
|
|
245
|
-
capability: 'Energy',
|
|
246
|
-
attribute: 'capacity',
|
|
247
|
-
rationale: 'Thermal management enables denser energy storage',
|
|
248
|
-
},
|
|
249
|
-
{
|
|
250
|
-
stat: 'Resonance',
|
|
251
|
-
capability: 'Energy',
|
|
252
|
-
attribute: 'capacity',
|
|
253
|
-
rationale: 'Resonating crystals store energy in fields',
|
|
254
|
-
},
|
|
255
|
-
{
|
|
256
|
-
stat: 'Resonance',
|
|
257
|
-
capability: 'Warp',
|
|
258
|
-
attribute: 'range',
|
|
259
|
-
rationale: 'Resonant crystals amplify warp field projection',
|
|
260
|
-
},
|
|
261
|
-
{
|
|
262
|
-
stat: 'Resonance',
|
|
263
|
-
capability: 'Launch',
|
|
264
|
-
attribute: 'range',
|
|
265
|
-
rationale: 'Resonant crystals focus electromagnetic launch field',
|
|
266
|
-
},
|
|
267
|
-
{
|
|
268
|
-
stat: 'Resonance',
|
|
269
|
-
capability: 'Launch',
|
|
270
|
-
attribute: 'capacity',
|
|
271
|
-
rationale: 'Stronger resonant field launches heavier payloads',
|
|
272
|
-
},
|
|
273
|
-
{
|
|
274
|
-
stat: 'Hardness',
|
|
275
|
-
capability: 'Crafter',
|
|
276
|
-
attribute: 'speed',
|
|
277
|
-
rationale: 'Hard tooling surfaces cut and shape materials faster',
|
|
278
|
-
},
|
|
279
|
-
{
|
|
280
|
-
stat: 'Hardness',
|
|
281
|
-
capability: 'Launch',
|
|
282
|
-
attribute: 'drain',
|
|
283
|
-
rationale: 'Hard rail surfaces reduce friction, less energy wasted',
|
|
284
|
-
},
|
|
285
|
-
{
|
|
286
|
-
stat: 'Clarity',
|
|
287
|
-
capability: 'Energy',
|
|
288
|
-
attribute: 'recharge',
|
|
289
|
-
rationale: 'Flawless crystals enable smoother energy flow during recharge',
|
|
290
|
-
},
|
|
291
|
-
{
|
|
292
|
-
stat: 'Clarity',
|
|
293
|
-
capability: 'Crafter',
|
|
294
|
-
attribute: 'quality',
|
|
295
|
-
rationale: 'Precision optics for calibration during fabrication',
|
|
296
|
-
},
|
|
297
|
-
{
|
|
298
|
-
stat: 'Clarity',
|
|
299
|
-
capability: 'Crafter',
|
|
300
|
-
attribute: 'drain',
|
|
301
|
-
rationale: 'Precision computing optimizes energy routing in factory',
|
|
302
|
-
},
|
|
303
|
-
{
|
|
304
|
-
stat: 'Plasticity',
|
|
305
|
-
capability: 'Crafter',
|
|
306
|
-
attribute: 'speed',
|
|
307
|
-
rationale: 'Easily reshaped materials speed up processing',
|
|
308
|
-
},
|
|
309
|
-
{
|
|
310
|
-
stat: 'Plasticity',
|
|
311
|
-
capability: 'Movement',
|
|
312
|
-
attribute: 'thrust',
|
|
313
|
-
rationale: 'Flexible polymer seals reduce friction in propulsion',
|
|
314
|
-
},
|
|
315
|
-
{
|
|
316
|
-
stat: 'Plasticity',
|
|
317
|
-
capability: 'Loader',
|
|
318
|
-
attribute: 'thrust',
|
|
319
|
-
rationale: 'Flexible joints improve loader force transfer',
|
|
320
|
-
},
|
|
321
|
-
{
|
|
322
|
-
stat: 'Insulation',
|
|
323
|
-
capability: 'Movement',
|
|
324
|
-
attribute: 'drain',
|
|
325
|
-
rationale: 'Better insulation reduces energy loss during movement',
|
|
326
|
-
},
|
|
327
|
-
{
|
|
328
|
-
stat: 'Insulation',
|
|
329
|
-
capability: 'Gathering',
|
|
330
|
-
attribute: 'drain',
|
|
331
|
-
rationale: 'Better insulation reduces energy loss during gathering',
|
|
332
|
-
},
|
|
333
|
-
{
|
|
334
|
-
stat: 'Insulation',
|
|
335
|
-
capability: 'Crafter',
|
|
336
|
-
attribute: 'drain',
|
|
337
|
-
rationale: 'Better insulation reduces energy loss during crafting',
|
|
338
|
-
},
|
|
339
|
-
{
|
|
340
|
-
stat: 'Insulation',
|
|
341
|
-
capability: 'Launch',
|
|
342
|
-
attribute: 'drain',
|
|
343
|
-
rationale: 'Better insulation reduces energy loss during launch',
|
|
344
|
-
},
|
|
345
|
-
{
|
|
346
|
-
stat: 'Purity',
|
|
347
|
-
capability: 'Storage',
|
|
348
|
-
attribute: 'capacity',
|
|
349
|
-
rationale: 'Purer composites make better containers',
|
|
350
|
-
},
|
|
351
|
-
{
|
|
352
|
-
stat: 'Purity',
|
|
353
|
-
capability: 'Gathering',
|
|
354
|
-
attribute: 'speed',
|
|
355
|
-
rationale: 'Purer bio-lubricants reduce friction during gathering',
|
|
356
|
-
},
|
|
357
|
-
{
|
|
358
|
-
stat: 'Purity',
|
|
359
|
-
capability: 'Energy',
|
|
360
|
-
attribute: 'capacity',
|
|
361
|
-
rationale: 'Purer organic electrolytes store more charge',
|
|
362
|
-
},
|
|
363
|
-
{
|
|
364
|
-
stat: 'Resonance',
|
|
365
|
-
capability: 'Hauler',
|
|
366
|
-
attribute: 'capacity',
|
|
367
|
-
rationale:
|
|
368
|
-
'Resonant field strength determines how many targets the haul beam can lock onto simultaneously.',
|
|
369
|
-
},
|
|
370
|
-
{
|
|
371
|
-
stat: 'Conductivity',
|
|
372
|
-
capability: 'Hauler',
|
|
373
|
-
attribute: 'efficiency',
|
|
374
|
-
rationale: 'Energy-transfer efficiency reduces the thrust penalty from each hauled target.',
|
|
375
|
-
},
|
|
376
|
-
{
|
|
377
|
-
stat: 'Clarity',
|
|
378
|
-
capability: 'Hauler',
|
|
379
|
-
attribute: 'drain',
|
|
380
|
-
rationale:
|
|
381
|
-
'Clarity-focused energy routing reduces per-target drain during haul-beam operation.',
|
|
382
|
-
},
|
|
383
|
-
]
|
|
384
|
-
|
|
385
72
|
const invertedAttributes = new Set(['drain', 'mass'])
|
|
386
73
|
|
|
387
74
|
export function isInvertedAttribute(attribute: string): boolean {
|
|
@@ -394,15 +81,3 @@ export function getCapabilityAttributes(capability?: string): CapabilityAttribut
|
|
|
394
81
|
}
|
|
395
82
|
return capabilityAttributes
|
|
396
83
|
}
|
|
397
|
-
|
|
398
|
-
export function getStatMappings(): StatMapping[] {
|
|
399
|
-
return statMappings
|
|
400
|
-
}
|
|
401
|
-
|
|
402
|
-
export function getStatMappingsForStat(stat: string): StatMapping[] {
|
|
403
|
-
return statMappings.filter((m) => m.stat === stat)
|
|
404
|
-
}
|
|
405
|
-
|
|
406
|
-
export function getStatMappingsForCapability(capability: string): StatMapping[] {
|
|
407
|
-
return statMappings.filter((m) => m.capability === capability)
|
|
408
|
-
}
|
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
export interface SlotConsumer {
|
|
2
|
+
capability: string
|
|
3
|
+
attribute: string
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
export type SlotConsumerKind =
|
|
7
|
+
| 'engine'
|
|
8
|
+
| 'generator'
|
|
9
|
+
| 'gatherer'
|
|
10
|
+
| 'loader'
|
|
11
|
+
| 'crafter'
|
|
12
|
+
| 'storage'
|
|
13
|
+
| 'hauler'
|
|
14
|
+
| 'warp'
|
|
15
|
+
| 'ship-t1'
|
|
16
|
+
| 'container-t1'
|
|
17
|
+
| 'warehouse-t1'
|
|
18
|
+
| 'container-t2'
|
|
19
|
+
|
|
20
|
+
const ENTITY_HULL_SLOTS: Record<number, SlotConsumer> = {
|
|
21
|
+
0: {capability: 'Storage', attribute: 'capacity'},
|
|
22
|
+
1: {capability: 'Hull', attribute: 'mass'},
|
|
23
|
+
2: {capability: 'Storage', attribute: 'capacity'},
|
|
24
|
+
3: {capability: 'Storage', attribute: 'capacity'},
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
export const SLOT_FORMULAS: Record<SlotConsumerKind, Record<number, SlotConsumer>> = {
|
|
28
|
+
engine: {
|
|
29
|
+
0: {capability: 'Movement', attribute: 'thrust'},
|
|
30
|
+
1: {capability: 'Movement', attribute: 'drain'},
|
|
31
|
+
},
|
|
32
|
+
generator: {
|
|
33
|
+
0: {capability: 'Energy', attribute: 'capacity'},
|
|
34
|
+
1: {capability: 'Energy', attribute: 'recharge'},
|
|
35
|
+
},
|
|
36
|
+
gatherer: {
|
|
37
|
+
0: {capability: 'Gathering', attribute: 'yield'},
|
|
38
|
+
1: {capability: 'Gathering', attribute: 'depth'},
|
|
39
|
+
3: {capability: 'Gathering', attribute: 'drain'},
|
|
40
|
+
4: {capability: 'Gathering', attribute: 'speed'},
|
|
41
|
+
},
|
|
42
|
+
loader: {
|
|
43
|
+
0: {capability: 'Loader', attribute: 'mass'},
|
|
44
|
+
1: {capability: 'Loader', attribute: 'thrust'},
|
|
45
|
+
},
|
|
46
|
+
crafter: {
|
|
47
|
+
0: {capability: 'Crafter', attribute: 'speed'},
|
|
48
|
+
1: {capability: 'Crafter', attribute: 'drain'},
|
|
49
|
+
},
|
|
50
|
+
storage: {
|
|
51
|
+
0: {capability: 'Storage', attribute: 'bonus'},
|
|
52
|
+
1: {capability: 'Storage', attribute: 'bonus'},
|
|
53
|
+
2: {capability: 'Storage', attribute: 'bonus'},
|
|
54
|
+
3: {capability: 'Storage', attribute: 'bonus'},
|
|
55
|
+
},
|
|
56
|
+
hauler: {
|
|
57
|
+
0: {capability: 'Hauler', attribute: 'capacity'},
|
|
58
|
+
1: {capability: 'Hauler', attribute: 'efficiency'},
|
|
59
|
+
2: {capability: 'Hauler', attribute: 'drain'},
|
|
60
|
+
},
|
|
61
|
+
warp: {
|
|
62
|
+
0: {capability: 'Warp', attribute: 'range'},
|
|
63
|
+
},
|
|
64
|
+
'ship-t1': ENTITY_HULL_SLOTS,
|
|
65
|
+
'container-t1': ENTITY_HULL_SLOTS,
|
|
66
|
+
'warehouse-t1': ENTITY_HULL_SLOTS,
|
|
67
|
+
'container-t2': ENTITY_HULL_SLOTS,
|
|
68
|
+
}
|
package/src/data/colors.ts
CHANGED
package/src/data/items.json
CHANGED
|
@@ -20,6 +20,55 @@
|
|
|
20
20
|
"tier": 3,
|
|
21
21
|
"category": "ore"
|
|
22
22
|
},
|
|
23
|
+
{
|
|
24
|
+
"id": 104,
|
|
25
|
+
"mass": 71000,
|
|
26
|
+
"type": "resource",
|
|
27
|
+
"tier": 4,
|
|
28
|
+
"category": "ore"
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
"id": 105,
|
|
32
|
+
"mass": 78000,
|
|
33
|
+
"type": "resource",
|
|
34
|
+
"tier": 5,
|
|
35
|
+
"category": "ore"
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
"id": 106,
|
|
39
|
+
"mass": 87000,
|
|
40
|
+
"type": "resource",
|
|
41
|
+
"tier": 6,
|
|
42
|
+
"category": "ore"
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
"id": 107,
|
|
46
|
+
"mass": 96000,
|
|
47
|
+
"type": "resource",
|
|
48
|
+
"tier": 7,
|
|
49
|
+
"category": "ore"
|
|
50
|
+
},
|
|
51
|
+
{
|
|
52
|
+
"id": 108,
|
|
53
|
+
"mass": 107000,
|
|
54
|
+
"type": "resource",
|
|
55
|
+
"tier": 8,
|
|
56
|
+
"category": "ore"
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
"id": 109,
|
|
60
|
+
"mass": 118000,
|
|
61
|
+
"type": "resource",
|
|
62
|
+
"tier": 9,
|
|
63
|
+
"category": "ore"
|
|
64
|
+
},
|
|
65
|
+
{
|
|
66
|
+
"id": 110,
|
|
67
|
+
"mass": 130000,
|
|
68
|
+
"type": "resource",
|
|
69
|
+
"tier": 10,
|
|
70
|
+
"category": "ore"
|
|
71
|
+
},
|
|
23
72
|
{
|
|
24
73
|
"id": 201,
|
|
25
74
|
"mass": 35000,
|
|
@@ -41,6 +90,55 @@
|
|
|
41
90
|
"tier": 3,
|
|
42
91
|
"category": "crystal"
|
|
43
92
|
},
|
|
93
|
+
{
|
|
94
|
+
"id": 204,
|
|
95
|
+
"mass": 35000,
|
|
96
|
+
"type": "resource",
|
|
97
|
+
"tier": 4,
|
|
98
|
+
"category": "crystal"
|
|
99
|
+
},
|
|
100
|
+
{
|
|
101
|
+
"id": 205,
|
|
102
|
+
"mass": 35000,
|
|
103
|
+
"type": "resource",
|
|
104
|
+
"tier": 5,
|
|
105
|
+
"category": "crystal"
|
|
106
|
+
},
|
|
107
|
+
{
|
|
108
|
+
"id": 206,
|
|
109
|
+
"mass": 35000,
|
|
110
|
+
"type": "resource",
|
|
111
|
+
"tier": 6,
|
|
112
|
+
"category": "crystal"
|
|
113
|
+
},
|
|
114
|
+
{
|
|
115
|
+
"id": 207,
|
|
116
|
+
"mass": 35000,
|
|
117
|
+
"type": "resource",
|
|
118
|
+
"tier": 7,
|
|
119
|
+
"category": "crystal"
|
|
120
|
+
},
|
|
121
|
+
{
|
|
122
|
+
"id": 208,
|
|
123
|
+
"mass": 35000,
|
|
124
|
+
"type": "resource",
|
|
125
|
+
"tier": 8,
|
|
126
|
+
"category": "crystal"
|
|
127
|
+
},
|
|
128
|
+
{
|
|
129
|
+
"id": 209,
|
|
130
|
+
"mass": 35000,
|
|
131
|
+
"type": "resource",
|
|
132
|
+
"tier": 9,
|
|
133
|
+
"category": "crystal"
|
|
134
|
+
},
|
|
135
|
+
{
|
|
136
|
+
"id": 210,
|
|
137
|
+
"mass": 35000,
|
|
138
|
+
"type": "resource",
|
|
139
|
+
"tier": 10,
|
|
140
|
+
"category": "crystal"
|
|
141
|
+
},
|
|
44
142
|
{
|
|
45
143
|
"id": 301,
|
|
46
144
|
"mass": 15000,
|
|
@@ -62,6 +160,55 @@
|
|
|
62
160
|
"tier": 3,
|
|
63
161
|
"category": "gas"
|
|
64
162
|
},
|
|
163
|
+
{
|
|
164
|
+
"id": 304,
|
|
165
|
+
"mass": 11000,
|
|
166
|
+
"type": "resource",
|
|
167
|
+
"tier": 4,
|
|
168
|
+
"category": "gas"
|
|
169
|
+
},
|
|
170
|
+
{
|
|
171
|
+
"id": 305,
|
|
172
|
+
"mass": 10000,
|
|
173
|
+
"type": "resource",
|
|
174
|
+
"tier": 5,
|
|
175
|
+
"category": "gas"
|
|
176
|
+
},
|
|
177
|
+
{
|
|
178
|
+
"id": 306,
|
|
179
|
+
"mass": 9000,
|
|
180
|
+
"type": "resource",
|
|
181
|
+
"tier": 6,
|
|
182
|
+
"category": "gas"
|
|
183
|
+
},
|
|
184
|
+
{
|
|
185
|
+
"id": 307,
|
|
186
|
+
"mass": 8000,
|
|
187
|
+
"type": "resource",
|
|
188
|
+
"tier": 7,
|
|
189
|
+
"category": "gas"
|
|
190
|
+
},
|
|
191
|
+
{
|
|
192
|
+
"id": 308,
|
|
193
|
+
"mass": 7500,
|
|
194
|
+
"type": "resource",
|
|
195
|
+
"tier": 8,
|
|
196
|
+
"category": "gas"
|
|
197
|
+
},
|
|
198
|
+
{
|
|
199
|
+
"id": 309,
|
|
200
|
+
"mass": 6500,
|
|
201
|
+
"type": "resource",
|
|
202
|
+
"tier": 9,
|
|
203
|
+
"category": "gas"
|
|
204
|
+
},
|
|
205
|
+
{
|
|
206
|
+
"id": 310,
|
|
207
|
+
"mass": 6000,
|
|
208
|
+
"type": "resource",
|
|
209
|
+
"tier": 10,
|
|
210
|
+
"category": "gas"
|
|
211
|
+
},
|
|
65
212
|
{
|
|
66
213
|
"id": 401,
|
|
67
214
|
"mass": 22000,
|
|
@@ -83,6 +230,55 @@
|
|
|
83
230
|
"tier": 3,
|
|
84
231
|
"category": "regolith"
|
|
85
232
|
},
|
|
233
|
+
{
|
|
234
|
+
"id": 404,
|
|
235
|
+
"mass": 32000,
|
|
236
|
+
"type": "resource",
|
|
237
|
+
"tier": 4,
|
|
238
|
+
"category": "regolith"
|
|
239
|
+
},
|
|
240
|
+
{
|
|
241
|
+
"id": 405,
|
|
242
|
+
"mass": 36000,
|
|
243
|
+
"type": "resource",
|
|
244
|
+
"tier": 5,
|
|
245
|
+
"category": "regolith"
|
|
246
|
+
},
|
|
247
|
+
{
|
|
248
|
+
"id": 406,
|
|
249
|
+
"mass": 40500,
|
|
250
|
+
"type": "resource",
|
|
251
|
+
"tier": 6,
|
|
252
|
+
"category": "regolith"
|
|
253
|
+
},
|
|
254
|
+
{
|
|
255
|
+
"id": 407,
|
|
256
|
+
"mass": 46000,
|
|
257
|
+
"type": "resource",
|
|
258
|
+
"tier": 7,
|
|
259
|
+
"category": "regolith"
|
|
260
|
+
},
|
|
261
|
+
{
|
|
262
|
+
"id": 408,
|
|
263
|
+
"mass": 52000,
|
|
264
|
+
"type": "resource",
|
|
265
|
+
"tier": 8,
|
|
266
|
+
"category": "regolith"
|
|
267
|
+
},
|
|
268
|
+
{
|
|
269
|
+
"id": 409,
|
|
270
|
+
"mass": 58500,
|
|
271
|
+
"type": "resource",
|
|
272
|
+
"tier": 9,
|
|
273
|
+
"category": "regolith"
|
|
274
|
+
},
|
|
275
|
+
{
|
|
276
|
+
"id": 410,
|
|
277
|
+
"mass": 66000,
|
|
278
|
+
"type": "resource",
|
|
279
|
+
"tier": 10,
|
|
280
|
+
"category": "regolith"
|
|
281
|
+
},
|
|
86
282
|
{
|
|
87
283
|
"id": 501,
|
|
88
284
|
"mass": 42000,
|
|
@@ -104,6 +300,55 @@
|
|
|
104
300
|
"tier": 3,
|
|
105
301
|
"category": "biomass"
|
|
106
302
|
},
|
|
303
|
+
{
|
|
304
|
+
"id": 504,
|
|
305
|
+
"mass": 29000,
|
|
306
|
+
"type": "resource",
|
|
307
|
+
"tier": 4,
|
|
308
|
+
"category": "biomass"
|
|
309
|
+
},
|
|
310
|
+
{
|
|
311
|
+
"id": 505,
|
|
312
|
+
"mass": 26000,
|
|
313
|
+
"type": "resource",
|
|
314
|
+
"tier": 5,
|
|
315
|
+
"category": "biomass"
|
|
316
|
+
},
|
|
317
|
+
{
|
|
318
|
+
"id": 506,
|
|
319
|
+
"mass": 23000,
|
|
320
|
+
"type": "resource",
|
|
321
|
+
"tier": 6,
|
|
322
|
+
"category": "biomass"
|
|
323
|
+
},
|
|
324
|
+
{
|
|
325
|
+
"id": 507,
|
|
326
|
+
"mass": 20000,
|
|
327
|
+
"type": "resource",
|
|
328
|
+
"tier": 7,
|
|
329
|
+
"category": "biomass"
|
|
330
|
+
},
|
|
331
|
+
{
|
|
332
|
+
"id": 508,
|
|
333
|
+
"mass": 18000,
|
|
334
|
+
"type": "resource",
|
|
335
|
+
"tier": 8,
|
|
336
|
+
"category": "biomass"
|
|
337
|
+
},
|
|
338
|
+
{
|
|
339
|
+
"id": 509,
|
|
340
|
+
"mass": 16000,
|
|
341
|
+
"type": "resource",
|
|
342
|
+
"tier": 9,
|
|
343
|
+
"category": "biomass"
|
|
344
|
+
},
|
|
345
|
+
{
|
|
346
|
+
"id": 510,
|
|
347
|
+
"mass": 14000,
|
|
348
|
+
"type": "resource",
|
|
349
|
+
"tier": 10,
|
|
350
|
+
"category": "biomass"
|
|
351
|
+
},
|
|
107
352
|
{
|
|
108
353
|
"id": 10001,
|
|
109
354
|
"mass": 50000,
|