@shipload/sdk 1.0.0-next.1 → 1.0.0-next.11
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 +618 -353
- package/lib/shipload.js +2250 -1059
- package/lib/shipload.js.map +1 -1
- package/lib/shipload.m.js +2193 -1044
- package/lib/shipload.m.js.map +1 -1
- package/package.json +2 -2
- package/src/capabilities/modules.ts +3 -0
- package/src/capabilities/storage.ts +1 -1
- package/src/contracts/platform.ts +13 -1
- package/src/contracts/server.ts +227 -282
- package/src/data/capabilities.ts +5 -330
- package/src/data/capability-formulas.ts +70 -0
- package/src/data/catalog.ts +0 -5
- package/src/data/colors.ts +2 -16
- package/src/data/entities.json +46 -10
- package/src/data/item-ids.ts +4 -1
- package/src/data/items.json +264 -0
- package/src/data/metadata.ts +63 -1
- package/src/data/recipes-runtime.ts +1 -0
- package/src/data/recipes.json +139 -11
- package/src/derivation/capability-mappings.ts +122 -0
- package/src/derivation/index.ts +1 -0
- package/src/derivation/resources.ts +116 -37
- package/src/derivation/stats.ts +1 -2
- package/src/entities/container.ts +25 -10
- package/src/entities/extractor.ts +144 -0
- package/src/entities/factory.ts +135 -0
- package/src/entities/gamestate.ts +0 -9
- package/src/entities/makers.ts +130 -20
- package/src/entities/nexus.ts +29 -0
- package/src/entities/ship-deploy.ts +114 -56
- package/src/entities/ship.ts +17 -0
- package/src/entities/slot-multiplier.ts +21 -0
- package/src/entities/warehouse.ts +20 -3
- package/src/errors.ts +10 -13
- package/src/index-module.ts +81 -26
- package/src/managers/actions.ts +53 -80
- package/src/managers/entities.ts +65 -17
- package/src/managers/locations.ts +2 -20
- package/src/nft/atomicdata.ts +128 -0
- package/src/nft/description.ts +41 -7
- package/src/nft/index.ts +1 -0
- package/src/resolution/resolve-item.ts +17 -9
- package/src/scheduling/accessor.ts +4 -0
- package/src/scheduling/projection.ts +10 -2
- package/src/scheduling/schedule.ts +15 -1
- package/src/scheduling/task-cargo.ts +47 -0
- package/src/subscriptions/connection.ts +50 -2
- package/src/subscriptions/manager.ts +84 -4
- package/src/subscriptions/mappers.ts +5 -1
- package/src/subscriptions/types.ts +2 -2
- package/src/travel/travel.ts +61 -2
- package/src/types/entity-traits.ts +103 -1
- package/src/types.ts +11 -1
- package/src/utils/cargo.ts +27 -0
- package/src/utils/system.ts +25 -24
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,
|
|
@@ -213,6 +458,13 @@
|
|
|
213
458
|
"tier": 1,
|
|
214
459
|
"subtype": "hauler"
|
|
215
460
|
},
|
|
461
|
+
{
|
|
462
|
+
"id": 10107,
|
|
463
|
+
"mass": 180000,
|
|
464
|
+
"type": "module",
|
|
465
|
+
"tier": 1,
|
|
466
|
+
"subtype": "warp"
|
|
467
|
+
},
|
|
216
468
|
{
|
|
217
469
|
"id": 10200,
|
|
218
470
|
"mass": 80000,
|
|
@@ -231,6 +483,18 @@
|
|
|
231
483
|
"type": "entity",
|
|
232
484
|
"tier": 1
|
|
233
485
|
},
|
|
486
|
+
{
|
|
487
|
+
"id": 10203,
|
|
488
|
+
"mass": 800000,
|
|
489
|
+
"type": "entity",
|
|
490
|
+
"tier": 1
|
|
491
|
+
},
|
|
492
|
+
{
|
|
493
|
+
"id": 10204,
|
|
494
|
+
"mass": 800000,
|
|
495
|
+
"type": "entity",
|
|
496
|
+
"tier": 1
|
|
497
|
+
},
|
|
234
498
|
{
|
|
235
499
|
"id": 20001,
|
|
236
500
|
"mass": 50000,
|
package/src/data/metadata.ts
CHANGED
|
@@ -11,7 +11,7 @@ export interface EntityMetadata {
|
|
|
11
11
|
}
|
|
12
12
|
|
|
13
13
|
export const itemMetadata: Record<number, ItemMetadata> = {
|
|
14
|
-
// === Resources
|
|
14
|
+
// === Resources / Ore ===
|
|
15
15
|
101: {name: 'Ore', description: 'Crude metallic ore.', color: '#C26D3F'},
|
|
16
16
|
102: {name: 'Ore', description: 'Refined metallic ore with improved purity.', color: '#C26D3F'},
|
|
17
17
|
103: {
|
|
@@ -19,6 +19,15 @@ export const itemMetadata: Record<number, ItemMetadata> = {
|
|
|
19
19
|
description: 'High-grade metallic ore with exceptional density.',
|
|
20
20
|
color: '#C26D3F',
|
|
21
21
|
},
|
|
22
|
+
104: {name: 'Ore', description: '', color: '#C26D3F'},
|
|
23
|
+
105: {name: 'Ore', description: '', color: '#C26D3F'},
|
|
24
|
+
106: {name: 'Ore', description: '', color: '#C26D3F'},
|
|
25
|
+
107: {name: 'Ore', description: '', color: '#C26D3F'},
|
|
26
|
+
108: {name: 'Ore', description: '', color: '#C26D3F'},
|
|
27
|
+
109: {name: 'Ore', description: '', color: '#C26D3F'},
|
|
28
|
+
110: {name: 'Ore', description: '', color: '#C26D3F'},
|
|
29
|
+
|
|
30
|
+
// === Resources / Crystal ===
|
|
22
31
|
201: {name: 'Crystal', description: 'Raw resonant crystal.', color: '#4ADBFF'},
|
|
23
32
|
202: {
|
|
24
33
|
name: 'Crystal',
|
|
@@ -30,6 +39,15 @@ export const itemMetadata: Record<number, ItemMetadata> = {
|
|
|
30
39
|
description: 'High-grade resonant crystal with exceptional purity.',
|
|
31
40
|
color: '#4ADBFF',
|
|
32
41
|
},
|
|
42
|
+
204: {name: 'Crystal', description: '', color: '#4ADBFF'},
|
|
43
|
+
205: {name: 'Crystal', description: '', color: '#4ADBFF'},
|
|
44
|
+
206: {name: 'Crystal', description: '', color: '#4ADBFF'},
|
|
45
|
+
207: {name: 'Crystal', description: '', color: '#4ADBFF'},
|
|
46
|
+
208: {name: 'Crystal', description: '', color: '#4ADBFF'},
|
|
47
|
+
209: {name: 'Crystal', description: '', color: '#4ADBFF'},
|
|
48
|
+
210: {name: 'Crystal', description: '', color: '#4ADBFF'},
|
|
49
|
+
|
|
50
|
+
// === Resources / Gas ===
|
|
33
51
|
301: {name: 'Gas', description: 'Raw volatile gas.', color: '#B8E4A0'},
|
|
34
52
|
302: {
|
|
35
53
|
name: 'Gas',
|
|
@@ -41,6 +59,15 @@ export const itemMetadata: Record<number, ItemMetadata> = {
|
|
|
41
59
|
description: 'High-grade volatile gas with exceptional energy density.',
|
|
42
60
|
color: '#B8E4A0',
|
|
43
61
|
},
|
|
62
|
+
304: {name: 'Gas', description: '', color: '#B8E4A0'},
|
|
63
|
+
305: {name: 'Gas', description: '', color: '#B8E4A0'},
|
|
64
|
+
306: {name: 'Gas', description: '', color: '#B8E4A0'},
|
|
65
|
+
307: {name: 'Gas', description: '', color: '#B8E4A0'},
|
|
66
|
+
308: {name: 'Gas', description: '', color: '#B8E4A0'},
|
|
67
|
+
309: {name: 'Gas', description: '', color: '#B8E4A0'},
|
|
68
|
+
310: {name: 'Gas', description: '', color: '#B8E4A0'},
|
|
69
|
+
|
|
70
|
+
// === Resources / Regolith ===
|
|
44
71
|
401: {name: 'Regolith', description: 'Crude regolith dust.', color: '#C4A57B'},
|
|
45
72
|
402: {
|
|
46
73
|
name: 'Regolith',
|
|
@@ -52,6 +79,15 @@ export const itemMetadata: Record<number, ItemMetadata> = {
|
|
|
52
79
|
description: 'High-grade regolith with exceptional uniformity.',
|
|
53
80
|
color: '#C4A57B',
|
|
54
81
|
},
|
|
82
|
+
404: {name: 'Regolith', description: '', color: '#C4A57B'},
|
|
83
|
+
405: {name: 'Regolith', description: '', color: '#C4A57B'},
|
|
84
|
+
406: {name: 'Regolith', description: '', color: '#C4A57B'},
|
|
85
|
+
407: {name: 'Regolith', description: '', color: '#C4A57B'},
|
|
86
|
+
408: {name: 'Regolith', description: '', color: '#C4A57B'},
|
|
87
|
+
409: {name: 'Regolith', description: '', color: '#C4A57B'},
|
|
88
|
+
410: {name: 'Regolith', description: '', color: '#C4A57B'},
|
|
89
|
+
|
|
90
|
+
// === Resources / Biomass ===
|
|
55
91
|
501: {name: 'Biomass', description: 'Crude organic biomass.', color: '#5A8B3E'},
|
|
56
92
|
502: {
|
|
57
93
|
name: 'Biomass',
|
|
@@ -63,6 +99,13 @@ export const itemMetadata: Record<number, ItemMetadata> = {
|
|
|
63
99
|
description: 'High-grade biomass with exceptional saturation.',
|
|
64
100
|
color: '#5A8B3E',
|
|
65
101
|
},
|
|
102
|
+
504: {name: 'Biomass', description: '', color: '#5A8B3E'},
|
|
103
|
+
505: {name: 'Biomass', description: '', color: '#5A8B3E'},
|
|
104
|
+
506: {name: 'Biomass', description: '', color: '#5A8B3E'},
|
|
105
|
+
507: {name: 'Biomass', description: '', color: '#5A8B3E'},
|
|
106
|
+
508: {name: 'Biomass', description: '', color: '#5A8B3E'},
|
|
107
|
+
509: {name: 'Biomass', description: '', color: '#5A8B3E'},
|
|
108
|
+
510: {name: 'Biomass', description: '', color: '#5A8B3E'},
|
|
66
109
|
|
|
67
110
|
// === Components (T1) ===
|
|
68
111
|
10001: {
|
|
@@ -157,6 +200,12 @@ export const itemMetadata: Record<number, ItemMetadata> = {
|
|
|
157
200
|
'Projects a haul beam to lock onto and transport containers or warehouses through group travel.',
|
|
158
201
|
color: '#4ADBFF',
|
|
159
202
|
},
|
|
203
|
+
10107: {
|
|
204
|
+
name: 'Warp',
|
|
205
|
+
description:
|
|
206
|
+
'Folds local space-time around the hull, projecting the ship across vast distances in a single discharge of the entire energy reserve.',
|
|
207
|
+
color: '#9be4ff',
|
|
208
|
+
},
|
|
160
209
|
|
|
161
210
|
// === Entities (packed, T1) ===
|
|
162
211
|
10200: {
|
|
@@ -174,6 +223,17 @@ export const itemMetadata: Record<number, ItemMetadata> = {
|
|
|
174
223
|
description: 'Massive stationary storage facility with a single loader module slot.',
|
|
175
224
|
color: '#EAB308',
|
|
176
225
|
},
|
|
226
|
+
10203: {
|
|
227
|
+
name: 'Extractor',
|
|
228
|
+
description:
|
|
229
|
+
'Planetary resource extraction facility with generator and gatherer module slots.',
|
|
230
|
+
color: '#D4726F',
|
|
231
|
+
},
|
|
232
|
+
10204: {
|
|
233
|
+
name: 'Factory',
|
|
234
|
+
description: 'Planetary fabrication facility with generator and crafter module slots.',
|
|
235
|
+
color: '#7BA7D4',
|
|
236
|
+
},
|
|
177
237
|
|
|
178
238
|
// === Components (T2) ===
|
|
179
239
|
20001: {
|
|
@@ -199,6 +259,8 @@ export const itemMetadata: Record<number, ItemMetadata> = {
|
|
|
199
259
|
export const entityMetadata: Record<number, EntityMetadata> = {
|
|
200
260
|
10201: {moduleSlotLabels: ['Engine', 'Generator', 'Gatherer', 'Loader', 'Storage']},
|
|
201
261
|
10202: {moduleSlotLabels: ['Loader', 'Storage', 'Storage', 'Storage', 'Storage']},
|
|
262
|
+
10203: {moduleSlotLabels: ['Generator', 'Gatherer']},
|
|
263
|
+
10204: {moduleSlotLabels: ['Generator', 'Crafter']},
|
|
202
264
|
}
|
|
203
265
|
|
|
204
266
|
for (const item of items as Array<{id: number}>) {
|
package/src/data/recipes.json
CHANGED
|
@@ -393,12 +393,7 @@
|
|
|
393
393
|
]
|
|
394
394
|
},
|
|
395
395
|
{
|
|
396
|
-
"sources": [
|
|
397
|
-
{
|
|
398
|
-
"inputIndex": 1,
|
|
399
|
-
"statIndex": 1
|
|
400
|
-
}
|
|
401
|
-
]
|
|
396
|
+
"sources": []
|
|
402
397
|
},
|
|
403
398
|
{
|
|
404
399
|
"sources": [
|
|
@@ -436,8 +431,8 @@
|
|
|
436
431
|
{
|
|
437
432
|
"sources": [
|
|
438
433
|
{
|
|
439
|
-
"inputIndex":
|
|
440
|
-
"statIndex":
|
|
434
|
+
"inputIndex": 1,
|
|
435
|
+
"statIndex": 1
|
|
441
436
|
}
|
|
442
437
|
]
|
|
443
438
|
},
|
|
@@ -552,7 +547,7 @@
|
|
|
552
547
|
"sources": [
|
|
553
548
|
{
|
|
554
549
|
"inputIndex": 0,
|
|
555
|
-
"statIndex":
|
|
550
|
+
"statIndex": 1
|
|
556
551
|
}
|
|
557
552
|
]
|
|
558
553
|
},
|
|
@@ -568,12 +563,36 @@
|
|
|
568
563
|
"sources": [
|
|
569
564
|
{
|
|
570
565
|
"inputIndex": 0,
|
|
571
|
-
"statIndex":
|
|
566
|
+
"statIndex": 0
|
|
572
567
|
}
|
|
573
568
|
]
|
|
574
569
|
},
|
|
570
|
+
{
|
|
571
|
+
"sources": []
|
|
572
|
+
}
|
|
573
|
+
],
|
|
574
|
+
"blendWeights": []
|
|
575
|
+
},
|
|
576
|
+
{
|
|
577
|
+
"outputItemId": 10107,
|
|
578
|
+
"outputMass": 180000,
|
|
579
|
+
"inputs": [
|
|
580
|
+
{
|
|
581
|
+
"itemId": 10010,
|
|
582
|
+
"quantity": 6
|
|
583
|
+
},
|
|
584
|
+
{
|
|
585
|
+
"itemId": 10009,
|
|
586
|
+
"quantity": 4
|
|
587
|
+
}
|
|
588
|
+
],
|
|
589
|
+
"statSlots": [
|
|
575
590
|
{
|
|
576
591
|
"sources": [
|
|
592
|
+
{
|
|
593
|
+
"inputIndex": 0,
|
|
594
|
+
"statIndex": 1
|
|
595
|
+
},
|
|
577
596
|
{
|
|
578
597
|
"inputIndex": 1,
|
|
579
598
|
"statIndex": 1
|
|
@@ -581,7 +600,10 @@
|
|
|
581
600
|
]
|
|
582
601
|
}
|
|
583
602
|
],
|
|
584
|
-
"blendWeights": [
|
|
603
|
+
"blendWeights": [
|
|
604
|
+
1,
|
|
605
|
+
1
|
|
606
|
+
]
|
|
585
607
|
},
|
|
586
608
|
{
|
|
587
609
|
"outputItemId": 10200,
|
|
@@ -730,6 +752,112 @@
|
|
|
730
752
|
],
|
|
731
753
|
"blendWeights": []
|
|
732
754
|
},
|
|
755
|
+
{
|
|
756
|
+
"outputItemId": 10203,
|
|
757
|
+
"outputMass": 800000,
|
|
758
|
+
"inputs": [
|
|
759
|
+
{
|
|
760
|
+
"itemId": 10001,
|
|
761
|
+
"quantity": 15
|
|
762
|
+
},
|
|
763
|
+
{
|
|
764
|
+
"itemId": 10002,
|
|
765
|
+
"quantity": 8
|
|
766
|
+
}
|
|
767
|
+
],
|
|
768
|
+
"statSlots": [
|
|
769
|
+
{
|
|
770
|
+
"sources": [
|
|
771
|
+
{
|
|
772
|
+
"inputIndex": 0,
|
|
773
|
+
"statIndex": 0
|
|
774
|
+
}
|
|
775
|
+
]
|
|
776
|
+
},
|
|
777
|
+
{
|
|
778
|
+
"sources": [
|
|
779
|
+
{
|
|
780
|
+
"inputIndex": 0,
|
|
781
|
+
"statIndex": 1
|
|
782
|
+
}
|
|
783
|
+
]
|
|
784
|
+
},
|
|
785
|
+
{
|
|
786
|
+
"sources": [
|
|
787
|
+
{
|
|
788
|
+
"inputIndex": 1,
|
|
789
|
+
"statIndex": 0
|
|
790
|
+
}
|
|
791
|
+
]
|
|
792
|
+
},
|
|
793
|
+
{
|
|
794
|
+
"sources": [
|
|
795
|
+
{
|
|
796
|
+
"inputIndex": 1,
|
|
797
|
+
"statIndex": 1
|
|
798
|
+
}
|
|
799
|
+
]
|
|
800
|
+
}
|
|
801
|
+
],
|
|
802
|
+
"blendWeights": []
|
|
803
|
+
},
|
|
804
|
+
{
|
|
805
|
+
"outputItemId": 10204,
|
|
806
|
+
"outputMass": 800000,
|
|
807
|
+
"inputs": [
|
|
808
|
+
{
|
|
809
|
+
"itemId": 10001,
|
|
810
|
+
"quantity": 15
|
|
811
|
+
},
|
|
812
|
+
{
|
|
813
|
+
"itemId": 10002,
|
|
814
|
+
"quantity": 6
|
|
815
|
+
},
|
|
816
|
+
{
|
|
817
|
+
"itemId": 10008,
|
|
818
|
+
"quantity": 4
|
|
819
|
+
},
|
|
820
|
+
{
|
|
821
|
+
"itemId": 10009,
|
|
822
|
+
"quantity": 4
|
|
823
|
+
}
|
|
824
|
+
],
|
|
825
|
+
"statSlots": [
|
|
826
|
+
{
|
|
827
|
+
"sources": [
|
|
828
|
+
{
|
|
829
|
+
"inputIndex": 0,
|
|
830
|
+
"statIndex": 0
|
|
831
|
+
}
|
|
832
|
+
]
|
|
833
|
+
},
|
|
834
|
+
{
|
|
835
|
+
"sources": [
|
|
836
|
+
{
|
|
837
|
+
"inputIndex": 0,
|
|
838
|
+
"statIndex": 1
|
|
839
|
+
}
|
|
840
|
+
]
|
|
841
|
+
},
|
|
842
|
+
{
|
|
843
|
+
"sources": [
|
|
844
|
+
{
|
|
845
|
+
"inputIndex": 1,
|
|
846
|
+
"statIndex": 0
|
|
847
|
+
}
|
|
848
|
+
]
|
|
849
|
+
},
|
|
850
|
+
{
|
|
851
|
+
"sources": [
|
|
852
|
+
{
|
|
853
|
+
"inputIndex": 1,
|
|
854
|
+
"statIndex": 1
|
|
855
|
+
}
|
|
856
|
+
]
|
|
857
|
+
}
|
|
858
|
+
],
|
|
859
|
+
"blendWeights": []
|
|
860
|
+
},
|
|
733
861
|
{
|
|
734
862
|
"outputItemId": 20001,
|
|
735
863
|
"outputMass": 50000,
|