@shipload/sdk 1.0.0-next.54 → 1.0.0-next.55
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 +95 -15
- package/lib/shipload.js.map +1 -1
- package/lib/shipload.m.js +93 -16
- 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/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.m.js
CHANGED
|
@@ -4083,6 +4083,12 @@ var items = [
|
|
|
4083
4083
|
type: "entity",
|
|
4084
4084
|
tier: 1
|
|
4085
4085
|
},
|
|
4086
|
+
{
|
|
4087
|
+
id: 10209,
|
|
4088
|
+
mass: 1900000,
|
|
4089
|
+
type: "entity",
|
|
4090
|
+
tier: 1
|
|
4091
|
+
},
|
|
4086
4092
|
{
|
|
4087
4093
|
id: 10210,
|
|
4088
4094
|
mass: 1600000,
|
|
@@ -4462,6 +4468,11 @@ const itemMetadata = {
|
|
|
4462
4468
|
description: 'A station workshop with five independent workers. Visiting ships bring materials and power, and the workshop does the crafting.',
|
|
4463
4469
|
color: '#B877FF',
|
|
4464
4470
|
},
|
|
4471
|
+
10209: {
|
|
4472
|
+
name: 'Construction Dock',
|
|
4473
|
+
description: 'An immobile station construction facility with amplified power core and assembly arm slots.',
|
|
4474
|
+
color: '#FFB347',
|
|
4475
|
+
},
|
|
4465
4476
|
10210: {
|
|
4466
4477
|
name: 'Roustabout',
|
|
4467
4478
|
description: 'A basic starter ship. One engine, one power core, and one open slot to fit as you like.',
|