@shipload/sdk 1.0.0-next.4 → 1.0.0-next.40

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 (127) hide show
  1. package/lib/shipload.d.ts +2473 -973
  2. package/lib/shipload.js +11529 -5211
  3. package/lib/shipload.js.map +1 -1
  4. package/lib/shipload.m.js +11338 -5162
  5. package/lib/shipload.m.js.map +1 -1
  6. package/lib/testing.d.ts +970 -0
  7. package/lib/testing.js +4013 -0
  8. package/lib/testing.js.map +1 -0
  9. package/lib/testing.m.js +4007 -0
  10. package/lib/testing.m.js.map +1 -0
  11. package/package.json +15 -2
  12. package/src/capabilities/craftable.ts +51 -0
  13. package/src/capabilities/crafting.test.ts +7 -0
  14. package/src/capabilities/crafting.ts +5 -6
  15. package/src/capabilities/gathering.test.ts +16 -0
  16. package/src/capabilities/gathering.ts +35 -18
  17. package/src/capabilities/index.ts +0 -1
  18. package/src/capabilities/modules.ts +9 -0
  19. package/src/capabilities/storage.ts +16 -1
  20. package/src/contracts/platform.ts +231 -3
  21. package/src/contracts/server.ts +1021 -481
  22. package/src/coordinates/address.ts +88 -0
  23. package/src/coordinates/constants.test.ts +15 -0
  24. package/src/coordinates/constants.ts +23 -0
  25. package/src/coordinates/index.ts +15 -0
  26. package/src/coordinates/memo.test.ts +47 -0
  27. package/src/coordinates/memo.ts +20 -0
  28. package/src/coordinates/permutation.ts +77 -0
  29. package/src/coordinates/regions.ts +48 -0
  30. package/src/coordinates/sectors.ts +115 -0
  31. package/src/data/capabilities.ts +12 -5
  32. package/src/data/capability-formulas.ts +14 -7
  33. package/src/data/catalog.ts +0 -5
  34. package/src/data/colors.ts +14 -47
  35. package/src/data/entities.json +76 -10
  36. package/src/data/item-ids.ts +18 -12
  37. package/src/data/items.json +321 -38
  38. package/src/data/kind-registry.json +109 -0
  39. package/src/data/kind-registry.ts +165 -0
  40. package/src/data/metadata.ts +119 -33
  41. package/src/data/recipes-runtime.ts +3 -23
  42. package/src/data/recipes.json +238 -117
  43. package/src/derivation/build-methods.ts +45 -0
  44. package/src/derivation/capabilities.test.ts +151 -0
  45. package/src/derivation/capabilities.ts +512 -0
  46. package/src/derivation/capability-mappings.ts +9 -12
  47. package/src/derivation/crafting.ts +23 -24
  48. package/src/derivation/index.ts +25 -2
  49. package/src/derivation/recipe-usage.test.ts +78 -0
  50. package/src/derivation/recipe-usage.ts +141 -0
  51. package/src/derivation/reserve-regen.ts +34 -0
  52. package/src/derivation/resources.ts +125 -38
  53. package/src/derivation/rollups.test.ts +55 -0
  54. package/src/derivation/rollups.ts +56 -0
  55. package/src/derivation/stars.test.ts +51 -0
  56. package/src/derivation/stars.ts +15 -0
  57. package/src/derivation/stats.ts +6 -6
  58. package/src/derivation/stratum.ts +17 -20
  59. package/src/derivation/tiers.ts +40 -7
  60. package/src/derivation/wormhole.ts +136 -0
  61. package/src/entities/entity.ts +98 -0
  62. package/src/entities/gamestate.ts +3 -28
  63. package/src/entities/makers.ts +124 -134
  64. package/src/entities/slot-multiplier.ts +43 -0
  65. package/src/errors.ts +12 -16
  66. package/src/format.ts +26 -4
  67. package/src/index-module.ts +267 -47
  68. package/src/managers/actions.ts +528 -95
  69. package/src/managers/base.ts +6 -2
  70. package/src/managers/construction-types.ts +80 -0
  71. package/src/managers/construction.ts +412 -0
  72. package/src/managers/context.ts +20 -1
  73. package/src/managers/coordinates.ts +14 -0
  74. package/src/managers/entities.ts +18 -66
  75. package/src/managers/epochs.ts +40 -0
  76. package/src/managers/index.ts +17 -1
  77. package/src/managers/locations.ts +25 -29
  78. package/src/managers/nft.test.ts +14 -0
  79. package/src/managers/nft.ts +70 -0
  80. package/src/managers/plot.ts +122 -0
  81. package/src/nft/atomicassets.abi.json +1342 -0
  82. package/src/nft/atomicassets.ts +237 -0
  83. package/src/nft/atomicdata.ts +130 -0
  84. package/src/nft/buildImmutableData.ts +338 -0
  85. package/src/nft/description.ts +98 -24
  86. package/src/nft/index.ts +3 -0
  87. package/src/planner/index.ts +127 -0
  88. package/src/planner/planner.test.ts +319 -0
  89. package/src/resolution/describe-module.ts +18 -13
  90. package/src/resolution/display-name.ts +38 -10
  91. package/src/resolution/resolve-item.test.ts +37 -0
  92. package/src/resolution/resolve-item.ts +55 -24
  93. package/src/scheduling/accessor.ts +68 -22
  94. package/src/scheduling/availability.ts +108 -0
  95. package/src/scheduling/cancel.test.ts +348 -0
  96. package/src/scheduling/cancel.ts +209 -0
  97. package/src/scheduling/energy.ts +47 -0
  98. package/src/scheduling/idle-resolve.ts +45 -0
  99. package/src/scheduling/lane-core.ts +128 -0
  100. package/src/scheduling/lanes.test.ts +249 -0
  101. package/src/scheduling/lanes.ts +198 -0
  102. package/src/scheduling/projection.ts +209 -105
  103. package/src/scheduling/schedule.ts +241 -104
  104. package/src/scheduling/task-cargo.ts +46 -0
  105. package/src/shipload.ts +21 -1
  106. package/src/subscriptions/manager.ts +229 -142
  107. package/src/subscriptions/mappers.ts +5 -8
  108. package/src/subscriptions/types.ts +11 -3
  109. package/src/testing/catalog-hash.ts +19 -0
  110. package/src/testing/index.ts +2 -0
  111. package/src/testing/projection-parity.ts +167 -0
  112. package/src/travel/reach.ts +23 -0
  113. package/src/travel/route-planner.ts +196 -0
  114. package/src/travel/travel.ts +200 -112
  115. package/src/types/capabilities.ts +29 -6
  116. package/src/types/entity.ts +3 -3
  117. package/src/types/index.ts +0 -1
  118. package/src/types.ts +28 -13
  119. package/src/utils/cargo.ts +27 -0
  120. package/src/utils/display-name.ts +70 -0
  121. package/src/utils/system.ts +36 -24
  122. package/src/capabilities/loading.ts +0 -8
  123. package/src/entities/container.ts +0 -108
  124. package/src/entities/ship-deploy.ts +0 -259
  125. package/src/entities/ship.ts +0 -204
  126. package/src/entities/warehouse.ts +0 -119
  127. 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": [
@@ -31,17 +30,15 @@
31
30
  },
32
31
  {
33
32
  "outputItemId": 10002,
34
- "outputMass": 30000,
33
+ "outputMass": 4000,
35
34
  "inputs": [
36
35
  {
37
- "category": "regolith",
38
- "tier": 1,
39
- "quantity": 10
36
+ "itemId": 401,
37
+ "quantity": 5
40
38
  },
41
39
  {
42
- "category": "biomass",
43
- "tier": 1,
44
- "quantity": 20
40
+ "itemId": 501,
41
+ "quantity": 5
45
42
  }
46
43
  ],
47
44
  "statSlots": [
@@ -56,8 +53,8 @@
56
53
  {
57
54
  "sources": [
58
55
  {
59
- "inputIndex": 1,
60
- "statIndex": 2
56
+ "inputIndex": 0,
57
+ "statIndex": 0
61
58
  }
62
59
  ]
63
60
  }
@@ -66,12 +63,11 @@
66
63
  },
67
64
  {
68
65
  "outputItemId": 10003,
69
- "outputMass": 50000,
66
+ "outputMass": 4000,
70
67
  "inputs": [
71
68
  {
72
- "category": "gas",
73
- "tier": 1,
74
- "quantity": 32
69
+ "itemId": 301,
70
+ "quantity": 10
75
71
  }
76
72
  ],
77
73
  "statSlots": [
@@ -96,12 +92,15 @@
96
92
  },
97
93
  {
98
94
  "outputItemId": 10004,
99
- "outputMass": 30000,
95
+ "outputMass": 4000,
100
96
  "inputs": [
101
97
  {
102
- "category": "regolith",
103
- "tier": 1,
104
- "quantity": 20
98
+ "itemId": 201,
99
+ "quantity": 5
100
+ },
101
+ {
102
+ "itemId": 101,
103
+ "quantity": 5
105
104
  }
106
105
  ],
107
106
  "statSlots": [
@@ -109,7 +108,7 @@
109
108
  "sources": [
110
109
  {
111
110
  "inputIndex": 0,
112
- "statIndex": 0
111
+ "statIndex": 1
113
112
  }
114
113
  ]
115
114
  },
@@ -126,12 +125,15 @@
126
125
  },
127
126
  {
128
127
  "outputItemId": 10005,
129
- "outputMass": 50000,
128
+ "outputMass": 4000,
130
129
  "inputs": [
131
130
  {
132
- "category": "ore",
133
- "tier": 1,
134
- "quantity": 15
131
+ "itemId": 101,
132
+ "quantity": 5
133
+ },
134
+ {
135
+ "itemId": 301,
136
+ "quantity": 5
135
137
  }
136
138
  ],
137
139
  "statSlots": [
@@ -156,11 +158,10 @@
156
158
  },
157
159
  {
158
160
  "outputItemId": 10006,
159
- "outputMass": 30000,
161
+ "outputMass": 4000,
160
162
  "inputs": [
161
163
  {
162
- "category": "crystal",
163
- "tier": 1,
164
+ "itemId": 201,
164
165
  "quantity": 10
165
166
  }
166
167
  ],
@@ -186,12 +187,11 @@
186
187
  },
187
188
  {
188
189
  "outputItemId": 10007,
189
- "outputMass": 30000,
190
+ "outputMass": 4000,
190
191
  "inputs": [
191
192
  {
192
- "category": "biomass",
193
- "tier": 1,
194
- "quantity": 32
193
+ "itemId": 501,
194
+ "quantity": 10
195
195
  }
196
196
  ],
197
197
  "statSlots": [
@@ -216,12 +216,11 @@
216
216
  },
217
217
  {
218
218
  "outputItemId": 10008,
219
- "outputMass": 30000,
219
+ "outputMass": 4000,
220
220
  "inputs": [
221
221
  {
222
- "category": "regolith",
223
- "tier": 1,
224
- "quantity": 20
222
+ "itemId": 401,
223
+ "quantity": 10
225
224
  }
226
225
  ],
227
226
  "statSlots": [
@@ -246,12 +245,15 @@
246
245
  },
247
246
  {
248
247
  "outputItemId": 10009,
249
- "outputMass": 50000,
248
+ "outputMass": 4000,
250
249
  "inputs": [
251
250
  {
252
- "category": "gas",
253
- "tier": 1,
254
- "quantity": 32
251
+ "itemId": 301,
252
+ "quantity": 5
253
+ },
254
+ {
255
+ "itemId": 401,
256
+ "quantity": 5
255
257
  }
256
258
  ],
257
259
  "statSlots": [
@@ -276,12 +278,15 @@
276
278
  },
277
279
  {
278
280
  "outputItemId": 10010,
279
- "outputMass": 40000,
281
+ "outputMass": 4000,
280
282
  "inputs": [
281
283
  {
282
- "category": "crystal",
283
- "tier": 1,
284
- "quantity": 25
284
+ "itemId": 501,
285
+ "quantity": 5
286
+ },
287
+ {
288
+ "itemId": 201,
289
+ "quantity": 5
285
290
  }
286
291
  ],
287
292
  "statSlots": [
@@ -289,7 +294,7 @@
289
294
  "sources": [
290
295
  {
291
296
  "inputIndex": 0,
292
- "statIndex": 0
297
+ "statIndex": 2
293
298
  }
294
299
  ]
295
300
  },
@@ -297,7 +302,7 @@
297
302
  "sources": [
298
303
  {
299
304
  "inputIndex": 0,
300
- "statIndex": 1
305
+ "statIndex": 0
301
306
  }
302
307
  ]
303
308
  }
@@ -306,11 +311,11 @@
306
311
  },
307
312
  {
308
313
  "outputItemId": 10100,
309
- "outputMass": 150000,
314
+ "outputMass": 960000,
310
315
  "inputs": [
311
316
  {
312
317
  "itemId": 10003,
313
- "quantity": 6
318
+ "quantity": 600
314
319
  }
315
320
  ],
316
321
  "statSlots": [
@@ -335,11 +340,11 @@
335
340
  },
336
341
  {
337
342
  "outputItemId": 10101,
338
- "outputMass": 75000,
343
+ "outputMass": 960000,
339
344
  "inputs": [
340
345
  {
341
346
  "itemId": 10004,
342
- "quantity": 5
347
+ "quantity": 600
343
348
  }
344
349
  ],
345
350
  "statSlots": [
@@ -364,15 +369,15 @@
364
369
  },
365
370
  {
366
371
  "outputItemId": 10102,
367
- "outputMass": 145000,
372
+ "outputMass": 960000,
368
373
  "inputs": [
369
374
  {
370
375
  "itemId": 10005,
371
- "quantity": 4
376
+ "quantity": 300
372
377
  },
373
378
  {
374
379
  "itemId": 10006,
375
- "quantity": 3
380
+ "quantity": 300
376
381
  }
377
382
  ],
378
383
  "statSlots": [
@@ -392,9 +397,6 @@
392
397
  }
393
398
  ]
394
399
  },
395
- {
396
- "sources": []
397
- },
398
400
  {
399
401
  "sources": [
400
402
  {
@@ -416,22 +418,18 @@
416
418
  },
417
419
  {
418
420
  "outputItemId": 10103,
419
- "outputMass": 90000,
421
+ "outputMass": 960000,
420
422
  "inputs": [
421
- {
422
- "itemId": 10002,
423
- "quantity": 3
424
- },
425
423
  {
426
424
  "itemId": 10007,
427
- "quantity": 3
425
+ "quantity": 600
428
426
  }
429
427
  ],
430
428
  "statSlots": [
431
429
  {
432
430
  "sources": [
433
431
  {
434
- "inputIndex": 1,
432
+ "inputIndex": 0,
435
433
  "statIndex": 1
436
434
  }
437
435
  ]
@@ -439,7 +437,7 @@
439
437
  {
440
438
  "sources": [
441
439
  {
442
- "inputIndex": 1,
440
+ "inputIndex": 0,
443
441
  "statIndex": 0
444
442
  }
445
443
  ]
@@ -449,22 +447,22 @@
449
447
  },
450
448
  {
451
449
  "outputItemId": 10104,
452
- "outputMass": 120000,
450
+ "outputMass": 960000,
453
451
  "inputs": [
454
452
  {
455
- "itemId": 10008,
456
- "quantity": 3
453
+ "itemId": 10009,
454
+ "quantity": 300
457
455
  },
458
456
  {
459
- "itemId": 10009,
460
- "quantity": 3
457
+ "itemId": 10006,
458
+ "quantity": 300
461
459
  }
462
460
  ],
463
461
  "statSlots": [
464
462
  {
465
463
  "sources": [
466
464
  {
467
- "inputIndex": 1,
465
+ "inputIndex": 0,
468
466
  "statIndex": 0
469
467
  }
470
468
  ]
@@ -472,8 +470,8 @@
472
470
  {
473
471
  "sources": [
474
472
  {
475
- "inputIndex": 0,
476
- "statIndex": 1
473
+ "inputIndex": 1,
474
+ "statIndex": 0
477
475
  }
478
476
  ]
479
477
  }
@@ -482,15 +480,15 @@
482
480
  },
483
481
  {
484
482
  "outputItemId": 10105,
485
- "outputMass": 100000,
483
+ "outputMass": 960000,
486
484
  "inputs": [
487
485
  {
488
486
  "itemId": 10001,
489
- "quantity": 8
487
+ "quantity": 300
490
488
  },
491
489
  {
492
490
  "itemId": 10002,
493
- "quantity": 4
491
+ "quantity": 300
494
492
  }
495
493
  ],
496
494
  "statSlots": [
@@ -531,15 +529,15 @@
531
529
  },
532
530
  {
533
531
  "outputItemId": 10106,
534
- "outputMass": 120000,
532
+ "outputMass": 960000,
535
533
  "inputs": [
536
534
  {
537
535
  "itemId": 10004,
538
- "quantity": 3
536
+ "quantity": 300
539
537
  },
540
538
  {
541
539
  "itemId": 10010,
542
- "quantity": 3
540
+ "quantity": 300
543
541
  }
544
542
  ],
545
543
  "statSlots": [
@@ -547,7 +545,7 @@
547
545
  "sources": [
548
546
  {
549
547
  "inputIndex": 0,
550
- "statIndex": 1
548
+ "statIndex": 0
551
549
  }
552
550
  ]
553
551
  },
@@ -555,7 +553,7 @@
555
553
  "sources": [
556
554
  {
557
555
  "inputIndex": 1,
558
- "statIndex": 0
556
+ "statIndex": 1
559
557
  }
560
558
  ]
561
559
  },
@@ -563,27 +561,24 @@
563
561
  "sources": [
564
562
  {
565
563
  "inputIndex": 0,
566
- "statIndex": 0
564
+ "statIndex": 1
567
565
  }
568
566
  ]
569
- },
570
- {
571
- "sources": []
572
567
  }
573
568
  ],
574
569
  "blendWeights": []
575
570
  },
576
571
  {
577
572
  "outputItemId": 10107,
578
- "outputMass": 180000,
573
+ "outputMass": 960000,
579
574
  "inputs": [
580
575
  {
581
- "itemId": 10010,
582
- "quantity": 6
576
+ "itemId": 10004,
577
+ "quantity": 300
583
578
  },
584
579
  {
585
580
  "itemId": 10009,
586
- "quantity": 4
581
+ "quantity": 300
587
582
  }
588
583
  ],
589
584
  "statSlots": [
@@ -591,7 +586,7 @@
591
586
  "sources": [
592
587
  {
593
588
  "inputIndex": 0,
594
- "statIndex": 1
589
+ "statIndex": 0
595
590
  },
596
591
  {
597
592
  "inputIndex": 1,
@@ -606,16 +601,16 @@
606
601
  ]
607
602
  },
608
603
  {
609
- "outputItemId": 10200,
610
- "outputMass": 80000,
604
+ "outputItemId": 10108,
605
+ "outputMass": 960000,
611
606
  "inputs": [
612
607
  {
613
- "itemId": 10001,
614
- "quantity": 6
608
+ "itemId": 10003,
609
+ "quantity": 300
615
610
  },
616
611
  {
617
- "itemId": 10002,
618
- "quantity": 2
612
+ "itemId": 10007,
613
+ "quantity": 300
619
614
  }
620
615
  ],
621
616
  "statSlots": [
@@ -655,16 +650,16 @@
655
650
  "blendWeights": []
656
651
  },
657
652
  {
658
- "outputItemId": 10201,
659
- "outputMass": 100000,
653
+ "outputItemId": 10200,
654
+ "outputMass": 1900000,
660
655
  "inputs": [
661
656
  {
662
657
  "itemId": 10001,
663
- "quantity": 8
658
+ "quantity": 600
664
659
  },
665
660
  {
666
- "itemId": 10002,
667
- "quantity": 4
661
+ "itemId": 10008,
662
+ "quantity": 600
668
663
  }
669
664
  ],
670
665
  "statSlots": [
@@ -703,17 +698,68 @@
703
698
  ],
704
699
  "blendWeights": []
705
700
  },
701
+ {
702
+ "outputItemId": 10201,
703
+ "outputMass": 2400000,
704
+ "inputs": [
705
+ {
706
+ "itemId": 10001,
707
+ "quantity": 300
708
+ },
709
+ {
710
+ "itemId": 10008,
711
+ "quantity": 300
712
+ },
713
+ {
714
+ "itemId": 10007,
715
+ "quantity": 300
716
+ },
717
+ {
718
+ "itemId": 10003,
719
+ "quantity": 300
720
+ },
721
+ {
722
+ "itemId": 10006,
723
+ "quantity": 300
724
+ }
725
+ ],
726
+ "statSlots": [
727
+ {
728
+ "sources": [
729
+ {
730
+ "inputIndex": 0,
731
+ "statIndex": 0
732
+ }
733
+ ]
734
+ },
735
+ {
736
+ "sources": [
737
+ {
738
+ "inputIndex": 0,
739
+ "statIndex": 1
740
+ }
741
+ ]
742
+ },
743
+ {
744
+ "sources": []
745
+ },
746
+ {
747
+ "sources": []
748
+ }
749
+ ],
750
+ "blendWeights": []
751
+ },
706
752
  {
707
753
  "outputItemId": 10202,
708
- "outputMass": 1300000,
754
+ "outputMass": 3200000,
709
755
  "inputs": [
710
756
  {
711
757
  "itemId": 10001,
712
- "quantity": 20
758
+ "quantity": 1000
713
759
  },
714
760
  {
715
- "itemId": 10002,
716
- "quantity": 10
761
+ "itemId": 10008,
762
+ "quantity": 1000
717
763
  }
718
764
  ],
719
765
  "statSlots": [
@@ -752,17 +798,94 @@
752
798
  ],
753
799
  "blendWeights": []
754
800
  },
801
+ {
802
+ "outputItemId": 10203,
803
+ "outputMass": 1900000,
804
+ "inputs": [
805
+ {
806
+ "itemId": 10008,
807
+ "quantity": 600
808
+ },
809
+ {
810
+ "itemId": 10006,
811
+ "quantity": 600
812
+ }
813
+ ],
814
+ "statSlots": [
815
+ {
816
+ "sources": []
817
+ },
818
+ {
819
+ "sources": [
820
+ {
821
+ "inputIndex": 0,
822
+ "statIndex": 1
823
+ }
824
+ ]
825
+ },
826
+ {
827
+ "sources": [
828
+ {
829
+ "inputIndex": 0,
830
+ "statIndex": 0
831
+ }
832
+ ]
833
+ },
834
+ {
835
+ "sources": []
836
+ }
837
+ ],
838
+ "blendWeights": []
839
+ },
840
+ {
841
+ "outputItemId": 10204,
842
+ "outputMass": 1900000,
843
+ "inputs": [
844
+ {
845
+ "itemId": 10008,
846
+ "quantity": 600
847
+ },
848
+ {
849
+ "itemId": 10007,
850
+ "quantity": 600
851
+ }
852
+ ],
853
+ "statSlots": [
854
+ {
855
+ "sources": []
856
+ },
857
+ {
858
+ "sources": [
859
+ {
860
+ "inputIndex": 0,
861
+ "statIndex": 1
862
+ }
863
+ ]
864
+ },
865
+ {
866
+ "sources": [
867
+ {
868
+ "inputIndex": 0,
869
+ "statIndex": 0
870
+ }
871
+ ]
872
+ },
873
+ {
874
+ "sources": []
875
+ }
876
+ ],
877
+ "blendWeights": []
878
+ },
755
879
  {
756
880
  "outputItemId": 20001,
757
- "outputMass": 50000,
881
+ "outputMass": 500,
758
882
  "inputs": [
759
883
  {
760
884
  "itemId": 10001,
761
- "quantity": 2
885
+ "quantity": 200
762
886
  },
763
887
  {
764
- "category": "ore",
765
- "tier": 2,
888
+ "itemId": 102,
766
889
  "quantity": 15
767
890
  }
768
891
  ],
@@ -799,20 +922,18 @@
799
922
  },
800
923
  {
801
924
  "outputItemId": 20002,
802
- "outputMass": 30000,
925
+ "outputMass": 300,
803
926
  "inputs": [
804
927
  {
805
928
  "itemId": 10002,
806
- "quantity": 2
929
+ "quantity": 200
807
930
  },
808
931
  {
809
- "category": "regolith",
810
- "tier": 2,
932
+ "itemId": 402,
811
933
  "quantity": 10
812
934
  },
813
935
  {
814
- "category": "biomass",
815
- "tier": 2,
936
+ "itemId": 502,
816
937
  "quantity": 20
817
938
  }
818
939
  ],
@@ -854,11 +975,11 @@
854
975
  "inputs": [
855
976
  {
856
977
  "itemId": 20001,
857
- "quantity": 6
978
+ "quantity": 600
858
979
  },
859
980
  {
860
981
  "itemId": 20002,
861
- "quantity": 2
982
+ "quantity": 200
862
983
  }
863
984
  ],
864
985
  "statSlots": [