@shipload/sdk 1.0.0-next.54 → 1.0.0-next.56
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 +7 -2
- package/lib/shipload.js +127 -25
- package/lib/shipload.js.map +1 -1
- package/lib/shipload.m.js +125 -26
- package/lib/shipload.m.js.map +1 -1
- package/lib/testing.js +11 -0
- package/lib/testing.js.map +1 -1
- package/lib/testing.m.js +11 -0
- package/lib/testing.m.js.map +1 -1
- package/package.json +1 -1
- package/src/data/entities.json +16 -0
- package/src/data/item-ids.ts +1 -0
- package/src/data/items.json +6 -0
- package/src/data/kind-registry.json +12 -0
- package/src/data/kind-registry.ts +5 -0
- package/src/data/metadata.ts +7 -0
- package/src/data/recipes.json +39 -0
- package/src/derivation/capabilities.ts +2 -0
- package/src/derivation/recipe-usage.test.ts +7 -1
- package/src/index-module.ts +2 -0
- package/src/managers/construction.ts +41 -10
- package/src/nft/description.ts +4 -0
- package/src/scheduling/projection.ts +1 -14
- package/src/scheduling/schedule.test.ts +12 -9
- package/src/scheduling/schedule.ts +2 -6
package/lib/testing.js
CHANGED
|
@@ -4087,6 +4087,12 @@ var items = [
|
|
|
4087
4087
|
type: "entity",
|
|
4088
4088
|
tier: 1
|
|
4089
4089
|
},
|
|
4090
|
+
{
|
|
4091
|
+
id: 10209,
|
|
4092
|
+
mass: 1900000,
|
|
4093
|
+
type: "entity",
|
|
4094
|
+
tier: 1
|
|
4095
|
+
},
|
|
4090
4096
|
{
|
|
4091
4097
|
id: 10210,
|
|
4092
4098
|
mass: 1600000,
|
|
@@ -4466,6 +4472,11 @@ const itemMetadata = {
|
|
|
4466
4472
|
description: 'A station workshop with five independent workers. Visiting ships bring materials and power, and the workshop does the crafting.',
|
|
4467
4473
|
color: '#B877FF',
|
|
4468
4474
|
},
|
|
4475
|
+
10209: {
|
|
4476
|
+
name: 'Construction Dock',
|
|
4477
|
+
description: 'An immobile station construction facility with amplified power core and assembly arm slots.',
|
|
4478
|
+
color: '#FFB347',
|
|
4479
|
+
},
|
|
4469
4480
|
10210: {
|
|
4470
4481
|
name: 'Roustabout',
|
|
4471
4482
|
description: 'A basic starter ship. One engine, one power core, and one open slot to fit as you like.',
|