@shipload/sdk 1.0.0-next.5 → 1.0.0-next.50

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.
Files changed (144) hide show
  1. package/lib/scan.d.ts +52 -0
  2. package/lib/scan.js +162 -0
  3. package/lib/scan.js.map +1 -0
  4. package/lib/scan.m.js +152 -0
  5. package/lib/scan.m.js.map +1 -0
  6. package/lib/shipload.d.ts +2881 -1149
  7. package/lib/shipload.js +13031 -5511
  8. package/lib/shipload.js.map +1 -1
  9. package/lib/shipload.m.js +12807 -5460
  10. package/lib/shipload.m.js.map +1 -1
  11. package/lib/testing.d.ts +1028 -0
  12. package/lib/testing.js +4336 -0
  13. package/lib/testing.js.map +1 -0
  14. package/lib/testing.m.js +4330 -0
  15. package/lib/testing.m.js.map +1 -0
  16. package/package.json +20 -2
  17. package/src/capabilities/craftable.ts +51 -0
  18. package/src/capabilities/crafting.test.ts +7 -0
  19. package/src/capabilities/crafting.ts +6 -7
  20. package/src/capabilities/gathering.test.ts +29 -0
  21. package/src/capabilities/gathering.ts +37 -19
  22. package/src/capabilities/index.ts +0 -1
  23. package/src/capabilities/modules.ts +22 -0
  24. package/src/capabilities/storage.ts +16 -1
  25. package/src/contracts/platform.ts +231 -3
  26. package/src/contracts/server.ts +1160 -520
  27. package/src/coordinates/address.ts +88 -0
  28. package/src/coordinates/constants.test.ts +15 -0
  29. package/src/coordinates/constants.ts +23 -0
  30. package/src/coordinates/index.ts +15 -0
  31. package/src/coordinates/memo.test.ts +47 -0
  32. package/src/coordinates/memo.ts +20 -0
  33. package/src/coordinates/permutation.ts +77 -0
  34. package/src/coordinates/regions.ts +48 -0
  35. package/src/coordinates/sectors.ts +115 -0
  36. package/src/data/capabilities.ts +31 -16
  37. package/src/data/capability-formulas.ts +21 -14
  38. package/src/data/catalog.ts +0 -5
  39. package/src/data/colors.ts +13 -47
  40. package/src/data/entities.json +154 -10
  41. package/src/data/item-ids.ts +31 -12
  42. package/src/data/items.json +192 -74
  43. package/src/data/kind-registry.json +131 -0
  44. package/src/data/kind-registry.ts +172 -0
  45. package/src/data/metadata.ts +166 -48
  46. package/src/data/recipes-runtime.ts +5 -23
  47. package/src/data/recipes.json +1003 -163
  48. package/src/derivation/build-methods.test.ts +13 -0
  49. package/src/derivation/build-methods.ts +48 -0
  50. package/src/derivation/capabilities.test.ts +151 -0
  51. package/src/derivation/capabilities.ts +527 -0
  52. package/src/derivation/capability-mappings.ts +58 -16
  53. package/src/derivation/crafting.ts +36 -33
  54. package/src/derivation/index.ts +28 -2
  55. package/src/derivation/recipe-usage.test.ts +81 -0
  56. package/src/derivation/recipe-usage.ts +141 -0
  57. package/src/derivation/reserve-regen.ts +34 -0
  58. package/src/derivation/resources.ts +98 -19
  59. package/src/derivation/rollups.test.ts +55 -0
  60. package/src/derivation/rollups.ts +56 -0
  61. package/src/derivation/stars.test.ts +67 -0
  62. package/src/derivation/stars.ts +25 -0
  63. package/src/derivation/stats.ts +6 -6
  64. package/src/derivation/stratum.ts +26 -22
  65. package/src/derivation/tiers.ts +40 -7
  66. package/src/derivation/upgrades.ts +14 -0
  67. package/src/derivation/wormhole.ts +141 -0
  68. package/src/entities/entity.ts +98 -0
  69. package/src/entities/gamestate.ts +3 -28
  70. package/src/entities/makers.ts +131 -134
  71. package/src/entities/slot-multiplier.ts +43 -0
  72. package/src/errors.ts +12 -16
  73. package/src/format.ts +26 -4
  74. package/src/index-module.ts +290 -34
  75. package/src/managers/actions.ts +602 -105
  76. package/src/managers/base.ts +6 -2
  77. package/src/managers/cluster.test.ts +39 -0
  78. package/src/managers/cluster.ts +53 -0
  79. package/src/managers/construction-types.ts +80 -0
  80. package/src/managers/construction.ts +412 -0
  81. package/src/managers/context.ts +29 -1
  82. package/src/managers/coordinates.ts +14 -0
  83. package/src/managers/entities.ts +27 -66
  84. package/src/managers/epochs.ts +40 -0
  85. package/src/managers/flatten-gather-plan.test.ts +80 -0
  86. package/src/managers/index.ts +20 -1
  87. package/src/managers/locations.ts +25 -29
  88. package/src/managers/nft.test.ts +14 -0
  89. package/src/managers/nft.ts +70 -0
  90. package/src/managers/players.ts +25 -0
  91. package/src/managers/plot.ts +122 -0
  92. package/src/nft/atomicassets.abi.json +1342 -0
  93. package/src/nft/atomicassets.ts +237 -0
  94. package/src/nft/atomicdata.ts +130 -0
  95. package/src/nft/buildImmutableData.ts +336 -0
  96. package/src/nft/description.ts +104 -36
  97. package/src/nft/index.ts +3 -0
  98. package/src/planner/index.ts +242 -0
  99. package/src/planner/planner.test.ts +325 -0
  100. package/src/resolution/describe-module.ts +43 -25
  101. package/src/resolution/display-name.ts +38 -10
  102. package/src/resolution/resolve-item.test.ts +48 -0
  103. package/src/resolution/resolve-item.ts +74 -47
  104. package/src/scan/index.ts +244 -0
  105. package/src/scan/scan-wasm.base64.ts +2 -0
  106. package/src/scheduling/accessor.ts +65 -23
  107. package/src/scheduling/availability.ts +108 -0
  108. package/src/scheduling/cancel.test.ts +348 -0
  109. package/src/scheduling/cancel.ts +209 -0
  110. package/src/scheduling/energy.ts +47 -0
  111. package/src/scheduling/idle-resolve.ts +45 -0
  112. package/src/scheduling/lane-core.ts +128 -0
  113. package/src/scheduling/lanes.test.ts +249 -0
  114. package/src/scheduling/lanes.ts +198 -0
  115. package/src/scheduling/projection.ts +210 -107
  116. package/src/scheduling/schedule.ts +240 -117
  117. package/src/scheduling/task-cargo.ts +46 -0
  118. package/src/scheduling/unwrap.test.ts +86 -0
  119. package/src/scheduling/unwrap.ts +190 -0
  120. package/src/shipload.ts +26 -1
  121. package/src/subscriptions/manager.cluster.test.ts +51 -0
  122. package/src/subscriptions/manager.ts +245 -172
  123. package/src/subscriptions/mappers.ts +5 -8
  124. package/src/subscriptions/types.ts +28 -3
  125. package/src/testing/catalog-hash.ts +19 -0
  126. package/src/testing/index.ts +2 -0
  127. package/src/testing/projection-parity.ts +167 -0
  128. package/src/travel/reach.ts +23 -0
  129. package/src/travel/route-planner.ts +277 -0
  130. package/src/travel/travel.ts +148 -117
  131. package/src/types/capabilities.ts +29 -6
  132. package/src/types/entity.ts +3 -3
  133. package/src/types/index.ts +0 -1
  134. package/src/types.ts +36 -14
  135. package/src/utils/cargo.test.ts +14 -0
  136. package/src/utils/cargo.ts +29 -0
  137. package/src/utils/display-name.ts +70 -0
  138. package/src/utils/system.ts +36 -24
  139. package/src/capabilities/loading.ts +0 -8
  140. package/src/entities/container.ts +0 -123
  141. package/src/entities/ship-deploy.ts +0 -295
  142. package/src/entities/ship.ts +0 -221
  143. package/src/entities/warehouse.ts +0 -127
  144. package/src/types/entity-traits.ts +0 -69
@@ -1,12 +1,11 @@
1
1
  [
2
2
  {
3
3
  "outputItemId": 10001,
4
- "outputMass": 50000,
4
+ "outputMass": 4000,
5
5
  "inputs": [
6
6
  {
7
- "category": "ore",
8
- "tier": 1,
9
- "quantity": 15
7
+ "itemId": 101,
8
+ "quantity": 10
10
9
  }
11
10
  ],
12
11
  "statSlots": [
@@ -25,23 +24,29 @@
25
24
  "statIndex": 2
26
25
  }
27
26
  ]
27
+ },
28
+ {
29
+ "sources": [
30
+ {
31
+ "inputIndex": 0,
32
+ "statIndex": 1
33
+ }
34
+ ]
28
35
  }
29
36
  ],
30
37
  "blendWeights": []
31
38
  },
32
39
  {
33
40
  "outputItemId": 10002,
34
- "outputMass": 30000,
41
+ "outputMass": 4000,
35
42
  "inputs": [
36
43
  {
37
- "category": "regolith",
38
- "tier": 1,
39
- "quantity": 10
44
+ "itemId": 401,
45
+ "quantity": 5
40
46
  },
41
47
  {
42
- "category": "biomass",
43
- "tier": 1,
44
- "quantity": 20
48
+ "itemId": 501,
49
+ "quantity": 5
45
50
  }
46
51
  ],
47
52
  "statSlots": [
@@ -53,6 +58,22 @@
53
58
  }
54
59
  ]
55
60
  },
61
+ {
62
+ "sources": [
63
+ {
64
+ "inputIndex": 0,
65
+ "statIndex": 0
66
+ }
67
+ ]
68
+ },
69
+ {
70
+ "sources": [
71
+ {
72
+ "inputIndex": 0,
73
+ "statIndex": 2
74
+ }
75
+ ]
76
+ },
56
77
  {
57
78
  "sources": [
58
79
  {
@@ -66,12 +87,11 @@
66
87
  },
67
88
  {
68
89
  "outputItemId": 10003,
69
- "outputMass": 50000,
90
+ "outputMass": 4000,
70
91
  "inputs": [
71
92
  {
72
- "category": "gas",
73
- "tier": 1,
74
- "quantity": 32
93
+ "itemId": 301,
94
+ "quantity": 10
75
95
  }
76
96
  ],
77
97
  "statSlots": [
@@ -90,18 +110,29 @@
90
110
  "statIndex": 2
91
111
  }
92
112
  ]
113
+ },
114
+ {
115
+ "sources": [
116
+ {
117
+ "inputIndex": 0,
118
+ "statIndex": 1
119
+ }
120
+ ]
93
121
  }
94
122
  ],
95
123
  "blendWeights": []
96
124
  },
97
125
  {
98
126
  "outputItemId": 10004,
99
- "outputMass": 30000,
127
+ "outputMass": 4000,
100
128
  "inputs": [
101
129
  {
102
- "category": "regolith",
103
- "tier": 1,
104
- "quantity": 20
130
+ "itemId": 201,
131
+ "quantity": 5
132
+ },
133
+ {
134
+ "itemId": 101,
135
+ "quantity": 5
105
136
  }
106
137
  ],
107
138
  "statSlots": [
@@ -109,7 +140,7 @@
109
140
  "sources": [
110
141
  {
111
142
  "inputIndex": 0,
112
- "statIndex": 0
143
+ "statIndex": 1
113
144
  }
114
145
  ]
115
146
  },
@@ -120,18 +151,29 @@
120
151
  "statIndex": 2
121
152
  }
122
153
  ]
154
+ },
155
+ {
156
+ "sources": [
157
+ {
158
+ "inputIndex": 0,
159
+ "statIndex": 0
160
+ }
161
+ ]
123
162
  }
124
163
  ],
125
164
  "blendWeights": []
126
165
  },
127
166
  {
128
167
  "outputItemId": 10005,
129
- "outputMass": 50000,
168
+ "outputMass": 4000,
130
169
  "inputs": [
131
170
  {
132
- "category": "ore",
133
- "tier": 1,
134
- "quantity": 15
171
+ "itemId": 101,
172
+ "quantity": 5
173
+ },
174
+ {
175
+ "itemId": 301,
176
+ "quantity": 5
135
177
  }
136
178
  ],
137
179
  "statSlots": [
@@ -150,17 +192,24 @@
150
192
  "statIndex": 1
151
193
  }
152
194
  ]
195
+ },
196
+ {
197
+ "sources": [
198
+ {
199
+ "inputIndex": 0,
200
+ "statIndex": 2
201
+ }
202
+ ]
153
203
  }
154
204
  ],
155
205
  "blendWeights": []
156
206
  },
157
207
  {
158
208
  "outputItemId": 10006,
159
- "outputMass": 30000,
209
+ "outputMass": 4000,
160
210
  "inputs": [
161
211
  {
162
- "category": "crystal",
163
- "tier": 1,
212
+ "itemId": 201,
164
213
  "quantity": 10
165
214
  }
166
215
  ],
@@ -180,18 +229,25 @@
180
229
  "statIndex": 2
181
230
  }
182
231
  ]
232
+ },
233
+ {
234
+ "sources": [
235
+ {
236
+ "inputIndex": 0,
237
+ "statIndex": 1
238
+ }
239
+ ]
183
240
  }
184
241
  ],
185
242
  "blendWeights": []
186
243
  },
187
244
  {
188
245
  "outputItemId": 10007,
189
- "outputMass": 30000,
246
+ "outputMass": 4000,
190
247
  "inputs": [
191
248
  {
192
- "category": "biomass",
193
- "tier": 1,
194
- "quantity": 32
249
+ "itemId": 501,
250
+ "quantity": 10
195
251
  }
196
252
  ],
197
253
  "statSlots": [
@@ -210,18 +266,25 @@
210
266
  "statIndex": 1
211
267
  }
212
268
  ]
269
+ },
270
+ {
271
+ "sources": [
272
+ {
273
+ "inputIndex": 0,
274
+ "statIndex": 2
275
+ }
276
+ ]
213
277
  }
214
278
  ],
215
279
  "blendWeights": []
216
280
  },
217
281
  {
218
282
  "outputItemId": 10008,
219
- "outputMass": 30000,
283
+ "outputMass": 4000,
220
284
  "inputs": [
221
285
  {
222
- "category": "regolith",
223
- "tier": 1,
224
- "quantity": 20
286
+ "itemId": 401,
287
+ "quantity": 10
225
288
  }
226
289
  ],
227
290
  "statSlots": [
@@ -246,12 +309,15 @@
246
309
  },
247
310
  {
248
311
  "outputItemId": 10009,
249
- "outputMass": 50000,
312
+ "outputMass": 4000,
250
313
  "inputs": [
251
314
  {
252
- "category": "gas",
253
- "tier": 1,
254
- "quantity": 32
315
+ "itemId": 301,
316
+ "quantity": 5
317
+ },
318
+ {
319
+ "itemId": 401,
320
+ "quantity": 5
255
321
  }
256
322
  ],
257
323
  "statSlots": [
@@ -270,21 +336,48 @@
270
336
  "statIndex": 2
271
337
  }
272
338
  ]
339
+ },
340
+ {
341
+ "sources": [
342
+ {
343
+ "inputIndex": 1,
344
+ "statIndex": 2
345
+ }
346
+ ]
347
+ },
348
+ {
349
+ "sources": [
350
+ {
351
+ "inputIndex": 1,
352
+ "statIndex": 0
353
+ }
354
+ ]
273
355
  }
274
356
  ],
275
357
  "blendWeights": []
276
358
  },
277
359
  {
278
360
  "outputItemId": 10010,
279
- "outputMass": 40000,
361
+ "outputMass": 4000,
280
362
  "inputs": [
281
363
  {
282
- "category": "crystal",
283
- "tier": 1,
284
- "quantity": 25
364
+ "itemId": 501,
365
+ "quantity": 5
366
+ },
367
+ {
368
+ "itemId": 201,
369
+ "quantity": 5
285
370
  }
286
371
  ],
287
372
  "statSlots": [
373
+ {
374
+ "sources": [
375
+ {
376
+ "inputIndex": 0,
377
+ "statIndex": 2
378
+ }
379
+ ]
380
+ },
288
381
  {
289
382
  "sources": [
290
383
  {
@@ -306,11 +399,11 @@
306
399
  },
307
400
  {
308
401
  "outputItemId": 10100,
309
- "outputMass": 150000,
402
+ "outputMass": 960000,
310
403
  "inputs": [
311
404
  {
312
405
  "itemId": 10003,
313
- "quantity": 6
406
+ "quantity": 600
314
407
  }
315
408
  ],
316
409
  "statSlots": [
@@ -319,6 +412,10 @@
319
412
  {
320
413
  "inputIndex": 0,
321
414
  "statIndex": 0
415
+ },
416
+ {
417
+ "inputIndex": 0,
418
+ "statIndex": 2
322
419
  }
323
420
  ]
324
421
  },
@@ -331,15 +428,17 @@
331
428
  ]
332
429
  }
333
430
  ],
334
- "blendWeights": []
431
+ "blendWeights": [
432
+ 1
433
+ ]
335
434
  },
336
435
  {
337
436
  "outputItemId": 10101,
338
- "outputMass": 75000,
437
+ "outputMass": 960000,
339
438
  "inputs": [
340
439
  {
341
440
  "itemId": 10004,
342
- "quantity": 5
441
+ "quantity": 600
343
442
  }
344
443
  ],
345
444
  "statSlots": [
@@ -348,6 +447,10 @@
348
447
  {
349
448
  "inputIndex": 0,
350
449
  "statIndex": 0
450
+ },
451
+ {
452
+ "inputIndex": 0,
453
+ "statIndex": 2
351
454
  }
352
455
  ]
353
456
  },
@@ -360,19 +463,21 @@
360
463
  ]
361
464
  }
362
465
  ],
363
- "blendWeights": []
466
+ "blendWeights": [
467
+ 1
468
+ ]
364
469
  },
365
470
  {
366
471
  "outputItemId": 10102,
367
- "outputMass": 145000,
472
+ "outputMass": 960000,
368
473
  "inputs": [
369
474
  {
370
475
  "itemId": 10005,
371
- "quantity": 4
476
+ "quantity": 300
372
477
  },
373
478
  {
374
- "itemId": 10006,
375
- "quantity": 3
479
+ "itemId": 10002,
480
+ "quantity": 300
376
481
  }
377
482
  ],
378
483
  "statSlots": [
@@ -381,25 +486,22 @@
381
486
  {
382
487
  "inputIndex": 0,
383
488
  "statIndex": 0
384
- }
385
- ]
386
- },
387
- {
388
- "sources": [
489
+ },
389
490
  {
390
491
  "inputIndex": 0,
391
- "statIndex": 1
492
+ "statIndex": 2
392
493
  }
393
494
  ]
394
495
  },
395
- {
396
- "sources": []
397
- },
398
496
  {
399
497
  "sources": [
400
498
  {
401
499
  "inputIndex": 1,
402
500
  "statIndex": 0
501
+ },
502
+ {
503
+ "inputIndex": 0,
504
+ "statIndex": 1
403
505
  }
404
506
  ]
405
507
  },
@@ -407,31 +509,30 @@
407
509
  "sources": [
408
510
  {
409
511
  "inputIndex": 1,
410
- "statIndex": 1
512
+ "statIndex": 3
411
513
  }
412
514
  ]
413
515
  }
414
516
  ],
415
- "blendWeights": []
517
+ "blendWeights": [
518
+ 1,
519
+ 1
520
+ ]
416
521
  },
417
522
  {
418
523
  "outputItemId": 10103,
419
- "outputMass": 90000,
524
+ "outputMass": 960000,
420
525
  "inputs": [
421
- {
422
- "itemId": 10002,
423
- "quantity": 3
424
- },
425
526
  {
426
527
  "itemId": 10007,
427
- "quantity": 3
528
+ "quantity": 600
428
529
  }
429
530
  ],
430
531
  "statSlots": [
431
532
  {
432
533
  "sources": [
433
534
  {
434
- "inputIndex": 1,
535
+ "inputIndex": 0,
435
536
  "statIndex": 1
436
537
  }
437
538
  ]
@@ -439,58 +540,71 @@
439
540
  {
440
541
  "sources": [
441
542
  {
442
- "inputIndex": 1,
543
+ "inputIndex": 0,
443
544
  "statIndex": 0
545
+ },
546
+ {
547
+ "inputIndex": 0,
548
+ "statIndex": 2
444
549
  }
445
550
  ]
446
551
  }
447
552
  ],
448
- "blendWeights": []
553
+ "blendWeights": [
554
+ 1
555
+ ]
449
556
  },
450
557
  {
451
558
  "outputItemId": 10104,
452
- "outputMass": 120000,
559
+ "outputMass": 960000,
453
560
  "inputs": [
454
561
  {
455
- "itemId": 10008,
456
- "quantity": 3
562
+ "itemId": 10009,
563
+ "quantity": 300
457
564
  },
458
565
  {
459
- "itemId": 10009,
460
- "quantity": 3
566
+ "itemId": 10006,
567
+ "quantity": 300
461
568
  }
462
569
  ],
463
570
  "statSlots": [
464
571
  {
465
572
  "sources": [
466
573
  {
467
- "inputIndex": 1,
468
- "statIndex": 0
574
+ "inputIndex": 0,
575
+ "statIndex": 2
576
+ },
577
+ {
578
+ "inputIndex": 0,
579
+ "statIndex": 3
469
580
  }
470
581
  ]
471
582
  },
472
583
  {
473
584
  "sources": [
474
585
  {
475
- "inputIndex": 0,
476
- "statIndex": 1
586
+ "inputIndex": 1,
587
+ "statIndex": 0
477
588
  }
478
589
  ]
479
590
  }
480
591
  ],
481
- "blendWeights": []
592
+ "blendWeights": [
593
+ 1,
594
+ 1
595
+ ]
482
596
  },
483
597
  {
484
598
  "outputItemId": 10105,
485
- "outputMass": 100000,
599
+ "outputMass": 960000,
486
600
  "inputs": [
487
601
  {
488
602
  "itemId": 10001,
489
- "quantity": 8
603
+ "quantity": 300
490
604
  },
491
605
  {
492
606
  "itemId": 10002,
493
- "quantity": 4
607
+ "quantity": 300
494
608
  }
495
609
  ],
496
610
  "statSlots": [
@@ -531,20 +645,24 @@
531
645
  },
532
646
  {
533
647
  "outputItemId": 10106,
534
- "outputMass": 120000,
648
+ "outputMass": 960000,
535
649
  "inputs": [
536
650
  {
537
651
  "itemId": 10004,
538
- "quantity": 3
652
+ "quantity": 300
539
653
  },
540
654
  {
541
655
  "itemId": 10010,
542
- "quantity": 3
656
+ "quantity": 300
543
657
  }
544
658
  ],
545
659
  "statSlots": [
546
660
  {
547
661
  "sources": [
662
+ {
663
+ "inputIndex": 0,
664
+ "statIndex": 0
665
+ },
548
666
  {
549
667
  "inputIndex": 0,
550
668
  "statIndex": 1
@@ -555,7 +673,7 @@
555
673
  "sources": [
556
674
  {
557
675
  "inputIndex": 1,
558
- "statIndex": 0
676
+ "statIndex": 1
559
677
  }
560
678
  ]
561
679
  },
@@ -563,27 +681,27 @@
563
681
  "sources": [
564
682
  {
565
683
  "inputIndex": 0,
566
- "statIndex": 0
684
+ "statIndex": 2
567
685
  }
568
686
  ]
569
- },
570
- {
571
- "sources": []
572
687
  }
573
688
  ],
574
- "blendWeights": []
689
+ "blendWeights": [
690
+ 1,
691
+ 1
692
+ ]
575
693
  },
576
694
  {
577
695
  "outputItemId": 10107,
578
- "outputMass": 180000,
696
+ "outputMass": 960000,
579
697
  "inputs": [
580
698
  {
581
- "itemId": 10010,
582
- "quantity": 6
699
+ "itemId": 10004,
700
+ "quantity": 300
583
701
  },
584
702
  {
585
703
  "itemId": 10009,
586
- "quantity": 4
704
+ "quantity": 300
587
705
  }
588
706
  ],
589
707
  "statSlots": [
@@ -594,8 +712,8 @@
594
712
  "statIndex": 1
595
713
  },
596
714
  {
597
- "inputIndex": 1,
598
- "statIndex": 1
715
+ "inputIndex": 0,
716
+ "statIndex": 2
599
717
  }
600
718
  ]
601
719
  }
@@ -606,16 +724,16 @@
606
724
  ]
607
725
  },
608
726
  {
609
- "outputItemId": 10200,
610
- "outputMass": 80000,
727
+ "outputItemId": 10108,
728
+ "outputMass": 960000,
611
729
  "inputs": [
612
730
  {
613
- "itemId": 10001,
614
- "quantity": 6
731
+ "itemId": 10003,
732
+ "quantity": 300
615
733
  },
616
734
  {
617
- "itemId": 10002,
618
- "quantity": 2
735
+ "itemId": 10007,
736
+ "quantity": 300
619
737
  }
620
738
  ],
621
739
  "statSlots": [
@@ -655,16 +773,16 @@
655
773
  "blendWeights": []
656
774
  },
657
775
  {
658
- "outputItemId": 10201,
659
- "outputMass": 100000,
776
+ "outputItemId": 10200,
777
+ "outputMass": 1900000,
660
778
  "inputs": [
661
779
  {
662
780
  "itemId": 10001,
663
- "quantity": 8
781
+ "quantity": 600
664
782
  },
665
783
  {
666
- "itemId": 10002,
667
- "quantity": 4
784
+ "itemId": 10008,
785
+ "quantity": 600
668
786
  }
669
787
  ],
670
788
  "statSlots": [
@@ -704,16 +822,28 @@
704
822
  "blendWeights": []
705
823
  },
706
824
  {
707
- "outputItemId": 10202,
708
- "outputMass": 1300000,
825
+ "outputItemId": 10201,
826
+ "outputMass": 2400000,
709
827
  "inputs": [
710
828
  {
711
829
  "itemId": 10001,
712
- "quantity": 20
830
+ "quantity": 300
713
831
  },
714
832
  {
715
- "itemId": 10002,
716
- "quantity": 10
833
+ "itemId": 10008,
834
+ "quantity": 300
835
+ },
836
+ {
837
+ "itemId": 10007,
838
+ "quantity": 300
839
+ },
840
+ {
841
+ "itemId": 10003,
842
+ "quantity": 300
843
+ },
844
+ {
845
+ "itemId": 10006,
846
+ "quantity": 300
717
847
  }
718
848
  ],
719
849
  "statSlots": [
@@ -734,36 +864,25 @@
734
864
  ]
735
865
  },
736
866
  {
737
- "sources": [
738
- {
739
- "inputIndex": 1,
740
- "statIndex": 0
741
- }
742
- ]
867
+ "sources": []
743
868
  },
744
869
  {
745
- "sources": [
746
- {
747
- "inputIndex": 1,
748
- "statIndex": 1
749
- }
750
- ]
870
+ "sources": []
751
871
  }
752
872
  ],
753
873
  "blendWeights": []
754
874
  },
755
875
  {
756
- "outputItemId": 20001,
757
- "outputMass": 50000,
876
+ "outputItemId": 10202,
877
+ "outputMass": 3200000,
758
878
  "inputs": [
759
879
  {
760
880
  "itemId": 10001,
761
- "quantity": 2
881
+ "quantity": 1000
762
882
  },
763
883
  {
764
- "category": "ore",
765
- "tier": 2,
766
- "quantity": 15
884
+ "itemId": 10008,
885
+ "quantity": 1000
767
886
  }
768
887
  ],
769
888
  "statSlots": [
@@ -772,9 +891,566 @@
772
891
  {
773
892
  "inputIndex": 0,
774
893
  "statIndex": 0
775
- },
776
- {
777
- "inputIndex": 1,
894
+ }
895
+ ]
896
+ },
897
+ {
898
+ "sources": [
899
+ {
900
+ "inputIndex": 0,
901
+ "statIndex": 1
902
+ }
903
+ ]
904
+ },
905
+ {
906
+ "sources": [
907
+ {
908
+ "inputIndex": 1,
909
+ "statIndex": 0
910
+ }
911
+ ]
912
+ },
913
+ {
914
+ "sources": [
915
+ {
916
+ "inputIndex": 1,
917
+ "statIndex": 1
918
+ }
919
+ ]
920
+ }
921
+ ],
922
+ "blendWeights": []
923
+ },
924
+ {
925
+ "outputItemId": 10203,
926
+ "outputMass": 1900000,
927
+ "inputs": [
928
+ {
929
+ "itemId": 10008,
930
+ "quantity": 600
931
+ },
932
+ {
933
+ "itemId": 10006,
934
+ "quantity": 600
935
+ }
936
+ ],
937
+ "statSlots": [
938
+ {
939
+ "sources": []
940
+ },
941
+ {
942
+ "sources": [
943
+ {
944
+ "inputIndex": 0,
945
+ "statIndex": 1
946
+ }
947
+ ]
948
+ },
949
+ {
950
+ "sources": [
951
+ {
952
+ "inputIndex": 0,
953
+ "statIndex": 0
954
+ }
955
+ ]
956
+ },
957
+ {
958
+ "sources": []
959
+ }
960
+ ],
961
+ "blendWeights": []
962
+ },
963
+ {
964
+ "outputItemId": 10204,
965
+ "outputMass": 1900000,
966
+ "inputs": [
967
+ {
968
+ "itemId": 10008,
969
+ "quantity": 600
970
+ },
971
+ {
972
+ "itemId": 10007,
973
+ "quantity": 600
974
+ }
975
+ ],
976
+ "statSlots": [
977
+ {
978
+ "sources": []
979
+ },
980
+ {
981
+ "sources": [
982
+ {
983
+ "inputIndex": 0,
984
+ "statIndex": 1
985
+ }
986
+ ]
987
+ },
988
+ {
989
+ "sources": [
990
+ {
991
+ "inputIndex": 0,
992
+ "statIndex": 0
993
+ }
994
+ ]
995
+ },
996
+ {
997
+ "sources": []
998
+ }
999
+ ],
1000
+ "blendWeights": []
1001
+ },
1002
+ {
1003
+ "outputItemId": 10207,
1004
+ "outputMass": 2400000,
1005
+ "inputs": [
1006
+ {
1007
+ "itemId": 10005,
1008
+ "quantity": 200
1009
+ },
1010
+ {
1011
+ "itemId": 10010,
1012
+ "quantity": 200
1013
+ }
1014
+ ],
1015
+ "statSlots": [
1016
+ {
1017
+ "sources": []
1018
+ },
1019
+ {
1020
+ "sources": [
1021
+ {
1022
+ "inputIndex": 1,
1023
+ "statIndex": 1
1024
+ }
1025
+ ]
1026
+ }
1027
+ ],
1028
+ "blendWeights": []
1029
+ },
1030
+ {
1031
+ "outputItemId": 20001,
1032
+ "outputMass": 4800,
1033
+ "inputs": [
1034
+ {
1035
+ "itemId": 102,
1036
+ "quantity": 12
1037
+ }
1038
+ ],
1039
+ "statSlots": [
1040
+ {
1041
+ "sources": [
1042
+ {
1043
+ "inputIndex": 0,
1044
+ "statIndex": 0
1045
+ }
1046
+ ]
1047
+ },
1048
+ {
1049
+ "sources": [
1050
+ {
1051
+ "inputIndex": 0,
1052
+ "statIndex": 2
1053
+ }
1054
+ ]
1055
+ },
1056
+ {
1057
+ "sources": [
1058
+ {
1059
+ "inputIndex": 0,
1060
+ "statIndex": 1
1061
+ }
1062
+ ]
1063
+ }
1064
+ ],
1065
+ "blendWeights": []
1066
+ },
1067
+ {
1068
+ "outputItemId": 20002,
1069
+ "outputMass": 4800,
1070
+ "inputs": [
1071
+ {
1072
+ "itemId": 402,
1073
+ "quantity": 6
1074
+ },
1075
+ {
1076
+ "itemId": 502,
1077
+ "quantity": 6
1078
+ }
1079
+ ],
1080
+ "statSlots": [
1081
+ {
1082
+ "sources": [
1083
+ {
1084
+ "inputIndex": 0,
1085
+ "statIndex": 1
1086
+ }
1087
+ ]
1088
+ },
1089
+ {
1090
+ "sources": [
1091
+ {
1092
+ "inputIndex": 0,
1093
+ "statIndex": 0
1094
+ }
1095
+ ]
1096
+ },
1097
+ {
1098
+ "sources": [
1099
+ {
1100
+ "inputIndex": 0,
1101
+ "statIndex": 2
1102
+ }
1103
+ ]
1104
+ },
1105
+ {
1106
+ "sources": [
1107
+ {
1108
+ "inputIndex": 1,
1109
+ "statIndex": 2
1110
+ }
1111
+ ]
1112
+ }
1113
+ ],
1114
+ "blendWeights": []
1115
+ },
1116
+ {
1117
+ "outputItemId": 20003,
1118
+ "outputMass": 4800,
1119
+ "inputs": [
1120
+ {
1121
+ "itemId": 302,
1122
+ "quantity": 12
1123
+ }
1124
+ ],
1125
+ "statSlots": [
1126
+ {
1127
+ "sources": [
1128
+ {
1129
+ "inputIndex": 0,
1130
+ "statIndex": 0
1131
+ }
1132
+ ]
1133
+ },
1134
+ {
1135
+ "sources": [
1136
+ {
1137
+ "inputIndex": 0,
1138
+ "statIndex": 2
1139
+ }
1140
+ ]
1141
+ },
1142
+ {
1143
+ "sources": [
1144
+ {
1145
+ "inputIndex": 0,
1146
+ "statIndex": 1
1147
+ }
1148
+ ]
1149
+ }
1150
+ ],
1151
+ "blendWeights": []
1152
+ },
1153
+ {
1154
+ "outputItemId": 20004,
1155
+ "outputMass": 4800,
1156
+ "inputs": [
1157
+ {
1158
+ "itemId": 202,
1159
+ "quantity": 6
1160
+ },
1161
+ {
1162
+ "itemId": 102,
1163
+ "quantity": 6
1164
+ }
1165
+ ],
1166
+ "statSlots": [
1167
+ {
1168
+ "sources": [
1169
+ {
1170
+ "inputIndex": 0,
1171
+ "statIndex": 1
1172
+ }
1173
+ ]
1174
+ },
1175
+ {
1176
+ "sources": [
1177
+ {
1178
+ "inputIndex": 0,
1179
+ "statIndex": 2
1180
+ }
1181
+ ]
1182
+ },
1183
+ {
1184
+ "sources": [
1185
+ {
1186
+ "inputIndex": 0,
1187
+ "statIndex": 0
1188
+ }
1189
+ ]
1190
+ }
1191
+ ],
1192
+ "blendWeights": []
1193
+ },
1194
+ {
1195
+ "outputItemId": 20005,
1196
+ "outputMass": 4800,
1197
+ "inputs": [
1198
+ {
1199
+ "itemId": 102,
1200
+ "quantity": 6
1201
+ },
1202
+ {
1203
+ "itemId": 302,
1204
+ "quantity": 6
1205
+ }
1206
+ ],
1207
+ "statSlots": [
1208
+ {
1209
+ "sources": [
1210
+ {
1211
+ "inputIndex": 0,
1212
+ "statIndex": 0
1213
+ }
1214
+ ]
1215
+ },
1216
+ {
1217
+ "sources": [
1218
+ {
1219
+ "inputIndex": 0,
1220
+ "statIndex": 1
1221
+ }
1222
+ ]
1223
+ },
1224
+ {
1225
+ "sources": [
1226
+ {
1227
+ "inputIndex": 0,
1228
+ "statIndex": 2
1229
+ }
1230
+ ]
1231
+ }
1232
+ ],
1233
+ "blendWeights": []
1234
+ },
1235
+ {
1236
+ "outputItemId": 20006,
1237
+ "outputMass": 4800,
1238
+ "inputs": [
1239
+ {
1240
+ "itemId": 202,
1241
+ "quantity": 12
1242
+ }
1243
+ ],
1244
+ "statSlots": [
1245
+ {
1246
+ "sources": [
1247
+ {
1248
+ "inputIndex": 0,
1249
+ "statIndex": 0
1250
+ }
1251
+ ]
1252
+ },
1253
+ {
1254
+ "sources": [
1255
+ {
1256
+ "inputIndex": 0,
1257
+ "statIndex": 2
1258
+ }
1259
+ ]
1260
+ },
1261
+ {
1262
+ "sources": [
1263
+ {
1264
+ "inputIndex": 0,
1265
+ "statIndex": 1
1266
+ }
1267
+ ]
1268
+ }
1269
+ ],
1270
+ "blendWeights": []
1271
+ },
1272
+ {
1273
+ "outputItemId": 20007,
1274
+ "outputMass": 4800,
1275
+ "inputs": [
1276
+ {
1277
+ "itemId": 502,
1278
+ "quantity": 12
1279
+ }
1280
+ ],
1281
+ "statSlots": [
1282
+ {
1283
+ "sources": [
1284
+ {
1285
+ "inputIndex": 0,
1286
+ "statIndex": 0
1287
+ }
1288
+ ]
1289
+ },
1290
+ {
1291
+ "sources": [
1292
+ {
1293
+ "inputIndex": 0,
1294
+ "statIndex": 1
1295
+ }
1296
+ ]
1297
+ },
1298
+ {
1299
+ "sources": [
1300
+ {
1301
+ "inputIndex": 0,
1302
+ "statIndex": 2
1303
+ }
1304
+ ]
1305
+ }
1306
+ ],
1307
+ "blendWeights": []
1308
+ },
1309
+ {
1310
+ "outputItemId": 20008,
1311
+ "outputMass": 4800,
1312
+ "inputs": [
1313
+ {
1314
+ "itemId": 402,
1315
+ "quantity": 12
1316
+ }
1317
+ ],
1318
+ "statSlots": [
1319
+ {
1320
+ "sources": [
1321
+ {
1322
+ "inputIndex": 0,
1323
+ "statIndex": 1
1324
+ }
1325
+ ]
1326
+ },
1327
+ {
1328
+ "sources": [
1329
+ {
1330
+ "inputIndex": 0,
1331
+ "statIndex": 2
1332
+ }
1333
+ ]
1334
+ }
1335
+ ],
1336
+ "blendWeights": []
1337
+ },
1338
+ {
1339
+ "outputItemId": 20009,
1340
+ "outputMass": 4800,
1341
+ "inputs": [
1342
+ {
1343
+ "itemId": 302,
1344
+ "quantity": 6
1345
+ },
1346
+ {
1347
+ "itemId": 402,
1348
+ "quantity": 6
1349
+ }
1350
+ ],
1351
+ "statSlots": [
1352
+ {
1353
+ "sources": [
1354
+ {
1355
+ "inputIndex": 0,
1356
+ "statIndex": 1
1357
+ }
1358
+ ]
1359
+ },
1360
+ {
1361
+ "sources": [
1362
+ {
1363
+ "inputIndex": 0,
1364
+ "statIndex": 2
1365
+ }
1366
+ ]
1367
+ },
1368
+ {
1369
+ "sources": [
1370
+ {
1371
+ "inputIndex": 1,
1372
+ "statIndex": 2
1373
+ }
1374
+ ]
1375
+ },
1376
+ {
1377
+ "sources": [
1378
+ {
1379
+ "inputIndex": 1,
1380
+ "statIndex": 0
1381
+ }
1382
+ ]
1383
+ }
1384
+ ],
1385
+ "blendWeights": []
1386
+ },
1387
+ {
1388
+ "outputItemId": 20010,
1389
+ "outputMass": 4800,
1390
+ "inputs": [
1391
+ {
1392
+ "itemId": 502,
1393
+ "quantity": 6
1394
+ },
1395
+ {
1396
+ "itemId": 202,
1397
+ "quantity": 6
1398
+ }
1399
+ ],
1400
+ "statSlots": [
1401
+ {
1402
+ "sources": [
1403
+ {
1404
+ "inputIndex": 0,
1405
+ "statIndex": 2
1406
+ }
1407
+ ]
1408
+ },
1409
+ {
1410
+ "sources": [
1411
+ {
1412
+ "inputIndex": 0,
1413
+ "statIndex": 0
1414
+ }
1415
+ ]
1416
+ },
1417
+ {
1418
+ "sources": [
1419
+ {
1420
+ "inputIndex": 0,
1421
+ "statIndex": 1
1422
+ }
1423
+ ]
1424
+ }
1425
+ ],
1426
+ "blendWeights": []
1427
+ },
1428
+ {
1429
+ "outputItemId": 20102,
1430
+ "outputMass": 1536000,
1431
+ "inputs": [
1432
+ {
1433
+ "itemId": 20005,
1434
+ "quantity": 300
1435
+ },
1436
+ {
1437
+ "itemId": 20002,
1438
+ "quantity": 300
1439
+ },
1440
+ {
1441
+ "itemId": 10102,
1442
+ "quantity": 1
1443
+ }
1444
+ ],
1445
+ "statSlots": [
1446
+ {
1447
+ "sources": [
1448
+ {
1449
+ "inputIndex": 0,
1450
+ "statIndex": 0
1451
+ },
1452
+ {
1453
+ "inputIndex": 2,
778
1454
  "statIndex": 0
779
1455
  }
780
1456
  ]
@@ -785,35 +1461,42 @@
785
1461
  "inputIndex": 0,
786
1462
  "statIndex": 1
787
1463
  },
1464
+ {
1465
+ "inputIndex": 2,
1466
+ "statIndex": 1
1467
+ }
1468
+ ]
1469
+ },
1470
+ {
1471
+ "sources": [
788
1472
  {
789
1473
  "inputIndex": 1,
1474
+ "statIndex": 3
1475
+ },
1476
+ {
1477
+ "inputIndex": 2,
790
1478
  "statIndex": 2
791
1479
  }
792
1480
  ]
793
1481
  }
794
1482
  ],
795
- "blendWeights": [
796
- 1,
797
- 1
798
- ]
1483
+ "blendWeights": []
799
1484
  },
800
1485
  {
801
- "outputItemId": 20002,
802
- "outputMass": 30000,
1486
+ "outputItemId": 20106,
1487
+ "outputMass": 1536000,
803
1488
  "inputs": [
804
1489
  {
805
- "itemId": 10002,
806
- "quantity": 2
1490
+ "itemId": 20004,
1491
+ "quantity": 300
807
1492
  },
808
1493
  {
809
- "category": "regolith",
810
- "tier": 2,
811
- "quantity": 10
1494
+ "itemId": 20010,
1495
+ "quantity": 300
812
1496
  },
813
1497
  {
814
- "category": "biomass",
815
- "tier": 2,
816
- "quantity": 20
1498
+ "itemId": 10106,
1499
+ "quantity": 1
817
1500
  }
818
1501
  ],
819
1502
  "statSlots": [
@@ -823,9 +1506,21 @@
823
1506
  "inputIndex": 0,
824
1507
  "statIndex": 0
825
1508
  },
1509
+ {
1510
+ "inputIndex": 2,
1511
+ "statIndex": 0
1512
+ }
1513
+ ]
1514
+ },
1515
+ {
1516
+ "sources": [
826
1517
  {
827
1518
  "inputIndex": 1,
828
1519
  "statIndex": 1
1520
+ },
1521
+ {
1522
+ "inputIndex": 2,
1523
+ "statIndex": 1
829
1524
  }
830
1525
  ]
831
1526
  },
@@ -833,7 +1528,7 @@
833
1528
  "sources": [
834
1529
  {
835
1530
  "inputIndex": 0,
836
- "statIndex": 1
1531
+ "statIndex": 2
837
1532
  },
838
1533
  {
839
1534
  "inputIndex": 2,
@@ -842,23 +1537,23 @@
842
1537
  ]
843
1538
  }
844
1539
  ],
845
- "blendWeights": [
846
- 1,
847
- 1,
848
- 1
849
- ]
1540
+ "blendWeights": []
850
1541
  },
851
1542
  {
852
1543
  "outputItemId": 20200,
853
- "outputMass": 80000,
1544
+ "outputMass": 3100000,
854
1545
  "inputs": [
855
1546
  {
856
1547
  "itemId": 20001,
857
- "quantity": 6
1548
+ "quantity": 600
858
1549
  },
859
1550
  {
860
- "itemId": 20002,
861
- "quantity": 2
1551
+ "itemId": 20008,
1552
+ "quantity": 600
1553
+ },
1554
+ {
1555
+ "itemId": 10200,
1556
+ "quantity": 1
862
1557
  }
863
1558
  ],
864
1559
  "statSlots": [
@@ -867,6 +1562,10 @@
867
1562
  {
868
1563
  "inputIndex": 0,
869
1564
  "statIndex": 0
1565
+ },
1566
+ {
1567
+ "inputIndex": 2,
1568
+ "statIndex": 0
870
1569
  }
871
1570
  ]
872
1571
  },
@@ -875,6 +1574,10 @@
875
1574
  {
876
1575
  "inputIndex": 0,
877
1576
  "statIndex": 1
1577
+ },
1578
+ {
1579
+ "inputIndex": 2,
1580
+ "statIndex": 1
878
1581
  }
879
1582
  ]
880
1583
  },
@@ -883,6 +1586,10 @@
883
1586
  {
884
1587
  "inputIndex": 1,
885
1588
  "statIndex": 0
1589
+ },
1590
+ {
1591
+ "inputIndex": 2,
1592
+ "statIndex": 2
886
1593
  }
887
1594
  ]
888
1595
  },
@@ -891,10 +1598,143 @@
891
1598
  {
892
1599
  "inputIndex": 1,
893
1600
  "statIndex": 1
1601
+ },
1602
+ {
1603
+ "inputIndex": 2,
1604
+ "statIndex": 3
894
1605
  }
895
1606
  ]
896
1607
  }
897
1608
  ],
898
- "blendWeights": []
1609
+ "blendWeights": [],
1610
+ "sourceSubclass": 10200
1611
+ },
1612
+ {
1613
+ "outputItemId": 20210,
1614
+ "outputMass": 3840000,
1615
+ "inputs": [
1616
+ {
1617
+ "itemId": 20001,
1618
+ "quantity": 300
1619
+ },
1620
+ {
1621
+ "itemId": 20008,
1622
+ "quantity": 300
1623
+ },
1624
+ {
1625
+ "itemId": 20007,
1626
+ "quantity": 300
1627
+ },
1628
+ {
1629
+ "itemId": 20003,
1630
+ "quantity": 300
1631
+ },
1632
+ {
1633
+ "itemId": 20006,
1634
+ "quantity": 300
1635
+ },
1636
+ {
1637
+ "itemId": 10201,
1638
+ "quantity": 1
1639
+ }
1640
+ ],
1641
+ "statSlots": [
1642
+ {
1643
+ "sources": [
1644
+ {
1645
+ "inputIndex": 0,
1646
+ "statIndex": 0
1647
+ },
1648
+ {
1649
+ "inputIndex": 5,
1650
+ "statIndex": 0
1651
+ }
1652
+ ]
1653
+ },
1654
+ {
1655
+ "sources": [
1656
+ {
1657
+ "inputIndex": 0,
1658
+ "statIndex": 1
1659
+ },
1660
+ {
1661
+ "inputIndex": 5,
1662
+ "statIndex": 1
1663
+ }
1664
+ ]
1665
+ },
1666
+ {
1667
+ "sources": []
1668
+ },
1669
+ {
1670
+ "sources": []
1671
+ }
1672
+ ],
1673
+ "blendWeights": [],
1674
+ "sourceSubclass": 10201
1675
+ },
1676
+ {
1677
+ "outputItemId": 20211,
1678
+ "outputMass": 3840000,
1679
+ "inputs": [
1680
+ {
1681
+ "itemId": 20001,
1682
+ "quantity": 300
1683
+ },
1684
+ {
1685
+ "itemId": 20002,
1686
+ "quantity": 300
1687
+ },
1688
+ {
1689
+ "itemId": 20008,
1690
+ "quantity": 300
1691
+ },
1692
+ {
1693
+ "itemId": 20010,
1694
+ "quantity": 300
1695
+ },
1696
+ {
1697
+ "itemId": 20004,
1698
+ "quantity": 300
1699
+ },
1700
+ {
1701
+ "itemId": 10201,
1702
+ "quantity": 1
1703
+ }
1704
+ ],
1705
+ "statSlots": [
1706
+ {
1707
+ "sources": [
1708
+ {
1709
+ "inputIndex": 0,
1710
+ "statIndex": 0
1711
+ },
1712
+ {
1713
+ "inputIndex": 5,
1714
+ "statIndex": 0
1715
+ }
1716
+ ]
1717
+ },
1718
+ {
1719
+ "sources": [
1720
+ {
1721
+ "inputIndex": 0,
1722
+ "statIndex": 1
1723
+ },
1724
+ {
1725
+ "inputIndex": 5,
1726
+ "statIndex": 1
1727
+ }
1728
+ ]
1729
+ },
1730
+ {
1731
+ "sources": []
1732
+ },
1733
+ {
1734
+ "sources": []
1735
+ }
1736
+ ],
1737
+ "blendWeights": [],
1738
+ "sourceSubclass": 10201
899
1739
  }
900
1740
  ]