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

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 (58) hide show
  1. package/lib/shipload.d.ts +544 -149
  2. package/lib/shipload.js +2424 -448
  3. package/lib/shipload.js.map +1 -1
  4. package/lib/shipload.m.js +2390 -447
  5. package/lib/shipload.m.js.map +1 -1
  6. package/lib/testing.d.ts +131 -7
  7. package/lib/testing.js +469 -11
  8. package/lib/testing.js.map +1 -1
  9. package/lib/testing.m.js +470 -12
  10. package/lib/testing.m.js.map +1 -1
  11. package/package.json +1 -1
  12. package/src/capabilities/crafting.ts +10 -1
  13. package/src/capabilities/gathering.ts +1 -1
  14. package/src/capabilities/hauling.ts +0 -5
  15. package/src/capabilities/modules.ts +6 -0
  16. package/src/capabilities/movement.ts +1 -1
  17. package/src/contracts/server.ts +315 -8
  18. package/src/data/capabilities.ts +11 -2
  19. package/src/data/entities.json +235 -20
  20. package/src/data/item-ids.ts +10 -0
  21. package/src/data/items.json +61 -0
  22. package/src/data/kind-registry.json +53 -1
  23. package/src/data/kind-registry.ts +5 -0
  24. package/src/data/metadata.ts +74 -5
  25. package/src/data/recipes-runtime.ts +1 -0
  26. package/src/data/recipes.json +887 -118
  27. package/src/derivation/capabilities.test.ts +81 -4
  28. package/src/derivation/capabilities.ts +162 -57
  29. package/src/derivation/crafting.ts +2 -0
  30. package/src/derivation/recipe-usage.test.ts +10 -7
  31. package/src/derivation/rollups.ts +16 -0
  32. package/src/derivation/stat-scaling.ts +12 -0
  33. package/src/entities/makers.ts +10 -1
  34. package/src/index-module.ts +33 -3
  35. package/src/managers/actions.ts +89 -44
  36. package/src/managers/construction-types.ts +2 -2
  37. package/src/managers/construction.ts +15 -15
  38. package/src/managers/plot.ts +1 -1
  39. package/src/nft/buildImmutableData.ts +55 -9
  40. package/src/nft/description.ts +99 -36
  41. package/src/planner/planner.test.ts +50 -41
  42. package/src/resolution/resolve-item.test.ts +1 -1
  43. package/src/resolution/resolve-item.ts +26 -11
  44. package/src/scheduling/availability.ts +7 -6
  45. package/src/scheduling/cancel.test.ts +40 -6
  46. package/src/scheduling/cancel.ts +21 -29
  47. package/src/scheduling/jobs.ts +71 -0
  48. package/src/scheduling/lanes.ts +29 -0
  49. package/src/scheduling/projection.ts +42 -25
  50. package/src/scheduling/task-cargo.ts +1 -1
  51. package/src/testing/projection-parity.ts +2 -2
  52. package/src/travel/reach.ts +4 -6
  53. package/src/travel/route-planner.ts +60 -49
  54. package/src/travel/route-simulator.ts +170 -0
  55. package/src/travel/travel.ts +40 -5
  56. package/src/types/capabilities.ts +9 -3
  57. package/src/types.ts +8 -3
  58. package/src/managers/flatten-gather-plan.test.ts +0 -80
@@ -772,6 +772,39 @@
772
772
  ],
773
773
  "blendWeights": []
774
774
  },
775
+ {
776
+ "outputItemId": 10110,
777
+ "outputMass": 960000,
778
+ "inputs": [
779
+ {
780
+ "itemId": 10005,
781
+ "quantity": 300
782
+ },
783
+ {
784
+ "itemId": 10002,
785
+ "quantity": 300
786
+ }
787
+ ],
788
+ "statSlots": [
789
+ {
790
+ "sources": [
791
+ {
792
+ "inputIndex": 1,
793
+ "statIndex": 1
794
+ }
795
+ ]
796
+ },
797
+ {
798
+ "sources": [
799
+ {
800
+ "inputIndex": 0,
801
+ "statIndex": 1
802
+ }
803
+ ]
804
+ }
805
+ ],
806
+ "blendWeights": []
807
+ },
775
808
  {
776
809
  "outputItemId": 10200,
777
810
  "outputMass": 1900000,
@@ -822,28 +855,183 @@
822
855
  "blendWeights": []
823
856
  },
824
857
  {
825
- "outputItemId": 10201,
858
+ "outputItemId": 10202,
859
+ "outputMass": 3200000,
860
+ "inputs": [
861
+ {
862
+ "itemId": 10001,
863
+ "quantity": 1000
864
+ },
865
+ {
866
+ "itemId": 10008,
867
+ "quantity": 1000
868
+ }
869
+ ],
870
+ "statSlots": [
871
+ {
872
+ "sources": [
873
+ {
874
+ "inputIndex": 0,
875
+ "statIndex": 0
876
+ }
877
+ ]
878
+ },
879
+ {
880
+ "sources": [
881
+ {
882
+ "inputIndex": 0,
883
+ "statIndex": 1
884
+ }
885
+ ]
886
+ },
887
+ {
888
+ "sources": [
889
+ {
890
+ "inputIndex": 1,
891
+ "statIndex": 0
892
+ }
893
+ ]
894
+ },
895
+ {
896
+ "sources": [
897
+ {
898
+ "inputIndex": 1,
899
+ "statIndex": 1
900
+ }
901
+ ]
902
+ }
903
+ ],
904
+ "blendWeights": []
905
+ },
906
+ {
907
+ "outputItemId": 10203,
908
+ "outputMass": 1900000,
909
+ "inputs": [
910
+ {
911
+ "itemId": 10008,
912
+ "quantity": 600
913
+ },
914
+ {
915
+ "itemId": 10006,
916
+ "quantity": 600
917
+ }
918
+ ],
919
+ "statSlots": [
920
+ {
921
+ "sources": []
922
+ },
923
+ {
924
+ "sources": [
925
+ {
926
+ "inputIndex": 0,
927
+ "statIndex": 1
928
+ }
929
+ ]
930
+ },
931
+ {
932
+ "sources": [
933
+ {
934
+ "inputIndex": 0,
935
+ "statIndex": 0
936
+ }
937
+ ]
938
+ },
939
+ {
940
+ "sources": []
941
+ }
942
+ ],
943
+ "blendWeights": []
944
+ },
945
+ {
946
+ "outputItemId": 10204,
947
+ "outputMass": 1900000,
948
+ "inputs": [
949
+ {
950
+ "itemId": 10008,
951
+ "quantity": 600
952
+ },
953
+ {
954
+ "itemId": 10007,
955
+ "quantity": 600
956
+ }
957
+ ],
958
+ "statSlots": [
959
+ {
960
+ "sources": []
961
+ },
962
+ {
963
+ "sources": [
964
+ {
965
+ "inputIndex": 0,
966
+ "statIndex": 1
967
+ }
968
+ ]
969
+ },
970
+ {
971
+ "sources": [
972
+ {
973
+ "inputIndex": 0,
974
+ "statIndex": 0
975
+ }
976
+ ]
977
+ },
978
+ {
979
+ "sources": []
980
+ }
981
+ ],
982
+ "blendWeights": []
983
+ },
984
+ {
985
+ "outputItemId": 10207,
826
986
  "outputMass": 2400000,
987
+ "inputs": [
988
+ {
989
+ "itemId": 10005,
990
+ "quantity": 200
991
+ },
992
+ {
993
+ "itemId": 10010,
994
+ "quantity": 200
995
+ }
996
+ ],
997
+ "statSlots": [
998
+ {
999
+ "sources": []
1000
+ },
1001
+ {
1002
+ "sources": [
1003
+ {
1004
+ "inputIndex": 1,
1005
+ "statIndex": 1
1006
+ }
1007
+ ]
1008
+ }
1009
+ ],
1010
+ "blendWeights": []
1011
+ },
1012
+ {
1013
+ "outputItemId": 10210,
1014
+ "outputMass": 1600000,
827
1015
  "inputs": [
828
1016
  {
829
1017
  "itemId": 10001,
830
- "quantity": 300
1018
+ "quantity": 200
831
1019
  },
832
1020
  {
833
1021
  "itemId": 10008,
834
- "quantity": 300
1022
+ "quantity": 200
835
1023
  },
836
1024
  {
837
1025
  "itemId": 10007,
838
- "quantity": 300
1026
+ "quantity": 200
839
1027
  },
840
1028
  {
841
1029
  "itemId": 10003,
842
- "quantity": 300
1030
+ "quantity": 200
843
1031
  },
844
1032
  {
845
1033
  "itemId": 10006,
846
- "quantity": 300
1034
+ "quantity": 200
847
1035
  }
848
1036
  ],
849
1037
  "statSlots": [
@@ -855,34 +1043,538 @@
855
1043
  }
856
1044
  ]
857
1045
  },
1046
+ {
1047
+ "sources": [
1048
+ {
1049
+ "inputIndex": 1,
1050
+ "statIndex": 0
1051
+ }
1052
+ ]
1053
+ },
1054
+ {
1055
+ "sources": [
1056
+ {
1057
+ "inputIndex": 2,
1058
+ "statIndex": 0
1059
+ }
1060
+ ]
1061
+ },
1062
+ {
1063
+ "sources": [
1064
+ {
1065
+ "inputIndex": 3,
1066
+ "statIndex": 0
1067
+ }
1068
+ ]
1069
+ },
1070
+ {
1071
+ "sources": [
1072
+ {
1073
+ "inputIndex": 4,
1074
+ "statIndex": 0
1075
+ }
1076
+ ]
1077
+ }
1078
+ ],
1079
+ "blendWeights": []
1080
+ },
1081
+ {
1082
+ "outputItemId": 10211,
1083
+ "outputMass": 2400000,
1084
+ "inputs": [
1085
+ {
1086
+ "itemId": 10005,
1087
+ "quantity": 100
1088
+ },
1089
+ {
1090
+ "itemId": 10002,
1091
+ "quantity": 100
1092
+ },
1093
+ {
1094
+ "itemId": 10010,
1095
+ "quantity": 100
1096
+ },
1097
+ {
1098
+ "itemId": 10009,
1099
+ "quantity": 100
1100
+ },
1101
+ {
1102
+ "itemId": 10004,
1103
+ "quantity": 100
1104
+ },
1105
+ {
1106
+ "itemId": 10210,
1107
+ "quantity": 1
1108
+ }
1109
+ ],
1110
+ "statSlots": [
858
1111
  {
859
1112
  "sources": [
860
1113
  {
861
1114
  "inputIndex": 0,
862
- "statIndex": 1
1115
+ "statIndex": 0
1116
+ },
1117
+ {
1118
+ "inputIndex": 5,
1119
+ "statIndex": 0
1120
+ }
1121
+ ]
1122
+ },
1123
+ {
1124
+ "sources": [
1125
+ {
1126
+ "inputIndex": 1,
1127
+ "statIndex": 0
1128
+ },
1129
+ {
1130
+ "inputIndex": 5,
1131
+ "statIndex": 1
1132
+ }
1133
+ ]
1134
+ },
1135
+ {
1136
+ "sources": [
1137
+ {
1138
+ "inputIndex": 2,
1139
+ "statIndex": 0
1140
+ },
1141
+ {
1142
+ "inputIndex": 5,
1143
+ "statIndex": 2
1144
+ }
1145
+ ]
1146
+ },
1147
+ {
1148
+ "sources": [
1149
+ {
1150
+ "inputIndex": 3,
1151
+ "statIndex": 0
1152
+ },
1153
+ {
1154
+ "inputIndex": 5,
1155
+ "statIndex": 3
1156
+ }
1157
+ ]
1158
+ },
1159
+ {
1160
+ "sources": [
1161
+ {
1162
+ "inputIndex": 4,
1163
+ "statIndex": 0
1164
+ },
1165
+ {
1166
+ "inputIndex": 5,
1167
+ "statIndex": 4
1168
+ }
1169
+ ]
1170
+ }
1171
+ ],
1172
+ "blendWeights": [],
1173
+ "sourceSubclass": 10210
1174
+ },
1175
+ {
1176
+ "outputItemId": 10212,
1177
+ "outputMass": 2400000,
1178
+ "inputs": [
1179
+ {
1180
+ "itemId": 10005,
1181
+ "quantity": 100
1182
+ },
1183
+ {
1184
+ "itemId": 10002,
1185
+ "quantity": 100
1186
+ },
1187
+ {
1188
+ "itemId": 10010,
1189
+ "quantity": 100
1190
+ },
1191
+ {
1192
+ "itemId": 10009,
1193
+ "quantity": 100
1194
+ },
1195
+ {
1196
+ "itemId": 10004,
1197
+ "quantity": 100
1198
+ },
1199
+ {
1200
+ "itemId": 10210,
1201
+ "quantity": 1
1202
+ }
1203
+ ],
1204
+ "statSlots": [
1205
+ {
1206
+ "sources": [
1207
+ {
1208
+ "inputIndex": 0,
1209
+ "statIndex": 0
1210
+ },
1211
+ {
1212
+ "inputIndex": 5,
1213
+ "statIndex": 0
1214
+ }
1215
+ ]
1216
+ },
1217
+ {
1218
+ "sources": [
1219
+ {
1220
+ "inputIndex": 1,
1221
+ "statIndex": 0
1222
+ },
1223
+ {
1224
+ "inputIndex": 5,
1225
+ "statIndex": 1
1226
+ }
1227
+ ]
1228
+ },
1229
+ {
1230
+ "sources": [
1231
+ {
1232
+ "inputIndex": 2,
1233
+ "statIndex": 0
1234
+ },
1235
+ {
1236
+ "inputIndex": 5,
1237
+ "statIndex": 2
1238
+ }
1239
+ ]
1240
+ },
1241
+ {
1242
+ "sources": [
1243
+ {
1244
+ "inputIndex": 3,
1245
+ "statIndex": 0
1246
+ },
1247
+ {
1248
+ "inputIndex": 5,
1249
+ "statIndex": 3
1250
+ }
1251
+ ]
1252
+ },
1253
+ {
1254
+ "sources": [
1255
+ {
1256
+ "inputIndex": 4,
1257
+ "statIndex": 0
1258
+ },
1259
+ {
1260
+ "inputIndex": 5,
1261
+ "statIndex": 4
1262
+ }
1263
+ ]
1264
+ }
1265
+ ],
1266
+ "blendWeights": [],
1267
+ "sourceSubclass": 10210
1268
+ },
1269
+ {
1270
+ "outputItemId": 10213,
1271
+ "outputMass": 2400000,
1272
+ "inputs": [
1273
+ {
1274
+ "itemId": 10005,
1275
+ "quantity": 100
1276
+ },
1277
+ {
1278
+ "itemId": 10002,
1279
+ "quantity": 100
1280
+ },
1281
+ {
1282
+ "itemId": 10010,
1283
+ "quantity": 100
1284
+ },
1285
+ {
1286
+ "itemId": 10009,
1287
+ "quantity": 100
1288
+ },
1289
+ {
1290
+ "itemId": 10004,
1291
+ "quantity": 100
1292
+ },
1293
+ {
1294
+ "itemId": 10210,
1295
+ "quantity": 1
1296
+ }
1297
+ ],
1298
+ "statSlots": [
1299
+ {
1300
+ "sources": [
1301
+ {
1302
+ "inputIndex": 0,
1303
+ "statIndex": 0
1304
+ },
1305
+ {
1306
+ "inputIndex": 5,
1307
+ "statIndex": 0
1308
+ }
1309
+ ]
1310
+ },
1311
+ {
1312
+ "sources": [
1313
+ {
1314
+ "inputIndex": 1,
1315
+ "statIndex": 0
1316
+ },
1317
+ {
1318
+ "inputIndex": 5,
1319
+ "statIndex": 1
1320
+ }
1321
+ ]
1322
+ },
1323
+ {
1324
+ "sources": [
1325
+ {
1326
+ "inputIndex": 2,
1327
+ "statIndex": 0
1328
+ },
1329
+ {
1330
+ "inputIndex": 5,
1331
+ "statIndex": 2
1332
+ }
1333
+ ]
1334
+ },
1335
+ {
1336
+ "sources": [
1337
+ {
1338
+ "inputIndex": 3,
1339
+ "statIndex": 0
1340
+ },
1341
+ {
1342
+ "inputIndex": 5,
1343
+ "statIndex": 3
1344
+ }
1345
+ ]
1346
+ },
1347
+ {
1348
+ "sources": [
1349
+ {
1350
+ "inputIndex": 4,
1351
+ "statIndex": 0
1352
+ },
1353
+ {
1354
+ "inputIndex": 5,
1355
+ "statIndex": 4
1356
+ }
1357
+ ]
1358
+ }
1359
+ ],
1360
+ "blendWeights": [],
1361
+ "sourceSubclass": 10210
1362
+ },
1363
+ {
1364
+ "outputItemId": 10214,
1365
+ "outputMass": 2400000,
1366
+ "inputs": [
1367
+ {
1368
+ "itemId": 10005,
1369
+ "quantity": 100
1370
+ },
1371
+ {
1372
+ "itemId": 10002,
1373
+ "quantity": 100
1374
+ },
1375
+ {
1376
+ "itemId": 10010,
1377
+ "quantity": 100
1378
+ },
1379
+ {
1380
+ "itemId": 10009,
1381
+ "quantity": 100
1382
+ },
1383
+ {
1384
+ "itemId": 10004,
1385
+ "quantity": 100
1386
+ },
1387
+ {
1388
+ "itemId": 10210,
1389
+ "quantity": 1
1390
+ }
1391
+ ],
1392
+ "statSlots": [
1393
+ {
1394
+ "sources": [
1395
+ {
1396
+ "inputIndex": 0,
1397
+ "statIndex": 0
1398
+ },
1399
+ {
1400
+ "inputIndex": 5,
1401
+ "statIndex": 0
1402
+ }
1403
+ ]
1404
+ },
1405
+ {
1406
+ "sources": [
1407
+ {
1408
+ "inputIndex": 1,
1409
+ "statIndex": 0
1410
+ },
1411
+ {
1412
+ "inputIndex": 5,
1413
+ "statIndex": 1
1414
+ }
1415
+ ]
1416
+ },
1417
+ {
1418
+ "sources": [
1419
+ {
1420
+ "inputIndex": 2,
1421
+ "statIndex": 0
1422
+ },
1423
+ {
1424
+ "inputIndex": 5,
1425
+ "statIndex": 2
1426
+ }
1427
+ ]
1428
+ },
1429
+ {
1430
+ "sources": [
1431
+ {
1432
+ "inputIndex": 3,
1433
+ "statIndex": 0
1434
+ },
1435
+ {
1436
+ "inputIndex": 5,
1437
+ "statIndex": 3
1438
+ }
1439
+ ]
1440
+ },
1441
+ {
1442
+ "sources": [
1443
+ {
1444
+ "inputIndex": 4,
1445
+ "statIndex": 0
1446
+ },
1447
+ {
1448
+ "inputIndex": 5,
1449
+ "statIndex": 4
1450
+ }
1451
+ ]
1452
+ }
1453
+ ],
1454
+ "blendWeights": [],
1455
+ "sourceSubclass": 10210
1456
+ },
1457
+ {
1458
+ "outputItemId": 10215,
1459
+ "outputMass": 2400000,
1460
+ "inputs": [
1461
+ {
1462
+ "itemId": 10005,
1463
+ "quantity": 100
1464
+ },
1465
+ {
1466
+ "itemId": 10002,
1467
+ "quantity": 100
1468
+ },
1469
+ {
1470
+ "itemId": 10010,
1471
+ "quantity": 100
1472
+ },
1473
+ {
1474
+ "itemId": 10009,
1475
+ "quantity": 100
1476
+ },
1477
+ {
1478
+ "itemId": 10004,
1479
+ "quantity": 100
1480
+ },
1481
+ {
1482
+ "itemId": 10210,
1483
+ "quantity": 1
1484
+ }
1485
+ ],
1486
+ "statSlots": [
1487
+ {
1488
+ "sources": [
1489
+ {
1490
+ "inputIndex": 0,
1491
+ "statIndex": 0
1492
+ },
1493
+ {
1494
+ "inputIndex": 5,
1495
+ "statIndex": 0
1496
+ }
1497
+ ]
1498
+ },
1499
+ {
1500
+ "sources": [
1501
+ {
1502
+ "inputIndex": 1,
1503
+ "statIndex": 0
1504
+ },
1505
+ {
1506
+ "inputIndex": 5,
1507
+ "statIndex": 1
1508
+ }
1509
+ ]
1510
+ },
1511
+ {
1512
+ "sources": [
1513
+ {
1514
+ "inputIndex": 2,
1515
+ "statIndex": 0
1516
+ },
1517
+ {
1518
+ "inputIndex": 5,
1519
+ "statIndex": 2
1520
+ }
1521
+ ]
1522
+ },
1523
+ {
1524
+ "sources": [
1525
+ {
1526
+ "inputIndex": 3,
1527
+ "statIndex": 0
1528
+ },
1529
+ {
1530
+ "inputIndex": 5,
1531
+ "statIndex": 3
1532
+ }
1533
+ ]
1534
+ },
1535
+ {
1536
+ "sources": [
1537
+ {
1538
+ "inputIndex": 4,
1539
+ "statIndex": 0
1540
+ },
1541
+ {
1542
+ "inputIndex": 5,
1543
+ "statIndex": 4
863
1544
  }
864
1545
  ]
865
- },
866
- {
867
- "sources": []
868
- },
869
- {
870
- "sources": []
871
1546
  }
872
1547
  ],
873
- "blendWeights": []
1548
+ "blendWeights": [],
1549
+ "sourceSubclass": 10210
874
1550
  },
875
1551
  {
876
- "outputItemId": 10202,
877
- "outputMass": 3200000,
1552
+ "outputItemId": 10216,
1553
+ "outputMass": 3600000,
878
1554
  "inputs": [
879
1555
  {
880
- "itemId": 10001,
881
- "quantity": 1000
1556
+ "itemId": 10005,
1557
+ "quantity": 150
882
1558
  },
883
1559
  {
884
- "itemId": 10008,
885
- "quantity": 1000
1560
+ "itemId": 10002,
1561
+ "quantity": 150
1562
+ },
1563
+ {
1564
+ "itemId": 10010,
1565
+ "quantity": 150
1566
+ },
1567
+ {
1568
+ "itemId": 10009,
1569
+ "quantity": 150
1570
+ },
1571
+ {
1572
+ "itemId": 10004,
1573
+ "quantity": 150
1574
+ },
1575
+ {
1576
+ "itemId": 10211,
1577
+ "quantity": 1
886
1578
  }
887
1579
  ],
888
1580
  "statSlots": [
@@ -891,13 +1583,21 @@
891
1583
  {
892
1584
  "inputIndex": 0,
893
1585
  "statIndex": 0
1586
+ },
1587
+ {
1588
+ "inputIndex": 5,
1589
+ "statIndex": 0
894
1590
  }
895
1591
  ]
896
1592
  },
897
1593
  {
898
1594
  "sources": [
899
1595
  {
900
- "inputIndex": 0,
1596
+ "inputIndex": 1,
1597
+ "statIndex": 0
1598
+ },
1599
+ {
1600
+ "inputIndex": 5,
901
1601
  "statIndex": 1
902
1602
  }
903
1603
  ]
@@ -905,127 +1605,136 @@
905
1605
  {
906
1606
  "sources": [
907
1607
  {
908
- "inputIndex": 1,
1608
+ "inputIndex": 2,
909
1609
  "statIndex": 0
1610
+ },
1611
+ {
1612
+ "inputIndex": 5,
1613
+ "statIndex": 2
910
1614
  }
911
1615
  ]
912
1616
  },
913
1617
  {
914
1618
  "sources": [
915
1619
  {
916
- "inputIndex": 1,
917
- "statIndex": 1
1620
+ "inputIndex": 3,
1621
+ "statIndex": 0
1622
+ },
1623
+ {
1624
+ "inputIndex": 5,
1625
+ "statIndex": 3
1626
+ }
1627
+ ]
1628
+ },
1629
+ {
1630
+ "sources": [
1631
+ {
1632
+ "inputIndex": 4,
1633
+ "statIndex": 0
1634
+ },
1635
+ {
1636
+ "inputIndex": 5,
1637
+ "statIndex": 4
918
1638
  }
919
1639
  ]
920
1640
  }
921
1641
  ],
922
- "blendWeights": []
1642
+ "blendWeights": [],
1643
+ "sourceSubclass": 10211
923
1644
  },
924
1645
  {
925
- "outputItemId": 10203,
926
- "outputMass": 1900000,
1646
+ "outputItemId": 10217,
1647
+ "outputMass": 3600000,
927
1648
  "inputs": [
928
1649
  {
929
- "itemId": 10008,
930
- "quantity": 600
1650
+ "itemId": 10005,
1651
+ "quantity": 150
931
1652
  },
932
1653
  {
933
- "itemId": 10006,
934
- "quantity": 600
1654
+ "itemId": 10002,
1655
+ "quantity": 150
1656
+ },
1657
+ {
1658
+ "itemId": 10010,
1659
+ "quantity": 150
1660
+ },
1661
+ {
1662
+ "itemId": 10009,
1663
+ "quantity": 150
1664
+ },
1665
+ {
1666
+ "itemId": 10004,
1667
+ "quantity": 150
1668
+ },
1669
+ {
1670
+ "itemId": 10211,
1671
+ "quantity": 1
935
1672
  }
936
1673
  ],
937
1674
  "statSlots": [
938
- {
939
- "sources": []
940
- },
941
1675
  {
942
1676
  "sources": [
943
1677
  {
944
1678
  "inputIndex": 0,
945
- "statIndex": 1
1679
+ "statIndex": 0
1680
+ },
1681
+ {
1682
+ "inputIndex": 5,
1683
+ "statIndex": 0
946
1684
  }
947
1685
  ]
948
1686
  },
949
1687
  {
950
1688
  "sources": [
951
1689
  {
952
- "inputIndex": 0,
1690
+ "inputIndex": 1,
953
1691
  "statIndex": 0
1692
+ },
1693
+ {
1694
+ "inputIndex": 5,
1695
+ "statIndex": 1
954
1696
  }
955
1697
  ]
956
1698
  },
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
1699
  {
981
1700
  "sources": [
982
1701
  {
983
- "inputIndex": 0,
984
- "statIndex": 1
1702
+ "inputIndex": 2,
1703
+ "statIndex": 0
1704
+ },
1705
+ {
1706
+ "inputIndex": 5,
1707
+ "statIndex": 2
985
1708
  }
986
1709
  ]
987
1710
  },
988
1711
  {
989
1712
  "sources": [
990
1713
  {
991
- "inputIndex": 0,
1714
+ "inputIndex": 3,
992
1715
  "statIndex": 0
1716
+ },
1717
+ {
1718
+ "inputIndex": 5,
1719
+ "statIndex": 3
993
1720
  }
994
1721
  ]
995
1722
  },
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
1723
  {
1020
1724
  "sources": [
1021
1725
  {
1022
- "inputIndex": 1,
1023
- "statIndex": 1
1726
+ "inputIndex": 4,
1727
+ "statIndex": 0
1728
+ },
1729
+ {
1730
+ "inputIndex": 5,
1731
+ "statIndex": 4
1024
1732
  }
1025
1733
  ]
1026
1734
  }
1027
1735
  ],
1028
- "blendWeights": []
1736
+ "blendWeights": [],
1737
+ "sourceSubclass": 10211
1029
1738
  },
1030
1739
  {
1031
1740
  "outputItemId": 20001,
@@ -1614,27 +2323,27 @@
1614
2323
  "outputMass": 3840000,
1615
2324
  "inputs": [
1616
2325
  {
1617
- "itemId": 20001,
1618
- "quantity": 300
2326
+ "itemId": 20005,
2327
+ "quantity": 150
1619
2328
  },
1620
2329
  {
1621
- "itemId": 20008,
1622
- "quantity": 300
2330
+ "itemId": 20002,
2331
+ "quantity": 150
1623
2332
  },
1624
2333
  {
1625
- "itemId": 20007,
1626
- "quantity": 300
2334
+ "itemId": 20010,
2335
+ "quantity": 150
1627
2336
  },
1628
2337
  {
1629
- "itemId": 20003,
1630
- "quantity": 300
2338
+ "itemId": 20009,
2339
+ "quantity": 150
1631
2340
  },
1632
2341
  {
1633
- "itemId": 20006,
1634
- "quantity": 300
2342
+ "itemId": 20004,
2343
+ "quantity": 150
1635
2344
  },
1636
2345
  {
1637
- "itemId": 10201,
2346
+ "itemId": 10211,
1638
2347
  "quantity": 1
1639
2348
  }
1640
2349
  ],
@@ -1654,8 +2363,8 @@
1654
2363
  {
1655
2364
  "sources": [
1656
2365
  {
1657
- "inputIndex": 0,
1658
- "statIndex": 1
2366
+ "inputIndex": 1,
2367
+ "statIndex": 0
1659
2368
  },
1660
2369
  {
1661
2370
  "inputIndex": 5,
@@ -1664,41 +2373,71 @@
1664
2373
  ]
1665
2374
  },
1666
2375
  {
1667
- "sources": []
2376
+ "sources": [
2377
+ {
2378
+ "inputIndex": 2,
2379
+ "statIndex": 0
2380
+ },
2381
+ {
2382
+ "inputIndex": 5,
2383
+ "statIndex": 2
2384
+ }
2385
+ ]
1668
2386
  },
1669
2387
  {
1670
- "sources": []
2388
+ "sources": [
2389
+ {
2390
+ "inputIndex": 3,
2391
+ "statIndex": 0
2392
+ },
2393
+ {
2394
+ "inputIndex": 5,
2395
+ "statIndex": 3
2396
+ }
2397
+ ]
2398
+ },
2399
+ {
2400
+ "sources": [
2401
+ {
2402
+ "inputIndex": 4,
2403
+ "statIndex": 0
2404
+ },
2405
+ {
2406
+ "inputIndex": 5,
2407
+ "statIndex": 4
2408
+ }
2409
+ ]
1671
2410
  }
1672
2411
  ],
1673
2412
  "blendWeights": [],
1674
- "sourceSubclass": 10201
2413
+ "sourceSubclass": 10211
1675
2414
  },
1676
2415
  {
1677
2416
  "outputItemId": 20211,
1678
2417
  "outputMass": 3840000,
1679
2418
  "inputs": [
1680
2419
  {
1681
- "itemId": 20001,
1682
- "quantity": 300
2420
+ "itemId": 20005,
2421
+ "quantity": 150
1683
2422
  },
1684
2423
  {
1685
2424
  "itemId": 20002,
1686
- "quantity": 300
2425
+ "quantity": 150
1687
2426
  },
1688
2427
  {
1689
- "itemId": 20008,
1690
- "quantity": 300
2428
+ "itemId": 20010,
2429
+ "quantity": 150
1691
2430
  },
1692
2431
  {
1693
- "itemId": 20010,
1694
- "quantity": 300
2432
+ "itemId": 20009,
2433
+ "quantity": 150
1695
2434
  },
1696
2435
  {
1697
2436
  "itemId": 20004,
1698
- "quantity": 300
2437
+ "quantity": 150
1699
2438
  },
1700
2439
  {
1701
- "itemId": 10201,
2440
+ "itemId": 10214,
1702
2441
  "quantity": 1
1703
2442
  }
1704
2443
  ],
@@ -1718,8 +2457,8 @@
1718
2457
  {
1719
2458
  "sources": [
1720
2459
  {
1721
- "inputIndex": 0,
1722
- "statIndex": 1
2460
+ "inputIndex": 1,
2461
+ "statIndex": 0
1723
2462
  },
1724
2463
  {
1725
2464
  "inputIndex": 5,
@@ -1728,13 +2467,43 @@
1728
2467
  ]
1729
2468
  },
1730
2469
  {
1731
- "sources": []
2470
+ "sources": [
2471
+ {
2472
+ "inputIndex": 2,
2473
+ "statIndex": 0
2474
+ },
2475
+ {
2476
+ "inputIndex": 5,
2477
+ "statIndex": 2
2478
+ }
2479
+ ]
1732
2480
  },
1733
2481
  {
1734
- "sources": []
2482
+ "sources": [
2483
+ {
2484
+ "inputIndex": 3,
2485
+ "statIndex": 0
2486
+ },
2487
+ {
2488
+ "inputIndex": 5,
2489
+ "statIndex": 3
2490
+ }
2491
+ ]
2492
+ },
2493
+ {
2494
+ "sources": [
2495
+ {
2496
+ "inputIndex": 4,
2497
+ "statIndex": 0
2498
+ },
2499
+ {
2500
+ "inputIndex": 5,
2501
+ "statIndex": 4
2502
+ }
2503
+ ]
1735
2504
  }
1736
2505
  ],
1737
2506
  "blendWeights": [],
1738
- "sourceSubclass": 10201
2507
+ "sourceSubclass": 10214
1739
2508
  }
1740
2509
  ]