@shipload/sdk 2.0.0-rc16 → 2.0.0-rc17
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 +3 -3
- package/lib/shipload.js +35 -35
- package/lib/shipload.js.map +1 -1
- package/lib/shipload.m.js +34 -34
- package/lib/shipload.m.js.map +1 -1
- package/package.json +1 -1
- package/src/capabilities/modules.ts +2 -2
- package/src/data/capabilities.ts +16 -16
- package/src/data/recipes.ts +9 -9
- package/src/entities/ship-deploy.ts +2 -2
- package/src/index-module.ts +2 -2
- package/src/nft/description.ts +3 -3
- package/src/resolution/describe-module.ts +2 -2
- package/src/resolution/resolve-item.ts +3 -3
package/lib/shipload.m.js
CHANGED
|
@@ -4941,7 +4941,7 @@ const ITEM_ENGINE_T1 = 10100;
|
|
|
4941
4941
|
const ITEM_GENERATOR_T1 = 10101;
|
|
4942
4942
|
const ITEM_GATHERER_T1 = 10102;
|
|
4943
4943
|
const ITEM_LOADER_T1 = 10103;
|
|
4944
|
-
const
|
|
4944
|
+
const ITEM_CRAFTER_T1 = 10104;
|
|
4945
4945
|
const ITEM_STORAGE_T1 = 10105;
|
|
4946
4946
|
const ITEM_HAULER_T1 = 10106;
|
|
4947
4947
|
const MODULE_ANY = 0;
|
|
@@ -4967,7 +4967,7 @@ function getModuleCapabilityType(itemId) {
|
|
|
4967
4967
|
return MODULE_GATHERER;
|
|
4968
4968
|
case ITEM_LOADER_T1:
|
|
4969
4969
|
return MODULE_LOADER;
|
|
4970
|
-
case
|
|
4970
|
+
case ITEM_CRAFTER_T1:
|
|
4971
4971
|
return MODULE_CRAFTER;
|
|
4972
4972
|
case ITEM_STORAGE_T1:
|
|
4973
4973
|
return MODULE_STORAGE;
|
|
@@ -5106,7 +5106,7 @@ const components = [
|
|
|
5106
5106
|
{
|
|
5107
5107
|
id: ITEM_TOOL_BIT,
|
|
5108
5108
|
name: 'Tool Bit',
|
|
5109
|
-
description: 'Dense regolith cutting head for
|
|
5109
|
+
description: 'Dense regolith cutting head for crafting operations.',
|
|
5110
5110
|
color: '#C4A57B',
|
|
5111
5111
|
mass: 30000,
|
|
5112
5112
|
stats: [
|
|
@@ -5114,12 +5114,12 @@ const components = [
|
|
|
5114
5114
|
{ key: 'composition', source: 'regolith' },
|
|
5115
5115
|
],
|
|
5116
5116
|
recipe: [{ category: 'regolith', quantity: 20 }],
|
|
5117
|
-
usedIn: [{ type: 'module', name: '
|
|
5117
|
+
usedIn: [{ type: 'module', name: 'Crafter' }],
|
|
5118
5118
|
},
|
|
5119
5119
|
{
|
|
5120
5120
|
id: ITEM_REACTION_CHAMBER,
|
|
5121
5121
|
name: 'Reaction Chamber',
|
|
5122
|
-
description: 'Gas-pressurized vessel for controlled
|
|
5122
|
+
description: 'Gas-pressurized vessel for controlled crafting reactions.',
|
|
5123
5123
|
color: '#B8E4A0',
|
|
5124
5124
|
mass: 50000,
|
|
5125
5125
|
stats: [
|
|
@@ -5127,7 +5127,7 @@ const components = [
|
|
|
5127
5127
|
{ key: 'thermal', source: 'gas' },
|
|
5128
5128
|
],
|
|
5129
5129
|
recipe: [{ category: 'gas', quantity: 32 }],
|
|
5130
|
-
usedIn: [{ type: 'module', name: '
|
|
5130
|
+
usedIn: [{ type: 'module', name: 'Crafter' }],
|
|
5131
5131
|
},
|
|
5132
5132
|
{
|
|
5133
5133
|
id: ITEM_FOCUSING_ARRAY,
|
|
@@ -5339,11 +5339,11 @@ const moduleRecipes = [
|
|
|
5339
5339
|
],
|
|
5340
5340
|
},
|
|
5341
5341
|
{
|
|
5342
|
-
id: '
|
|
5343
|
-
name: '
|
|
5342
|
+
id: 'crafter-t1',
|
|
5343
|
+
name: 'Crafter',
|
|
5344
5344
|
description: 'Basic crafting system. Processes materials using reaction chambers and cutting tools.',
|
|
5345
5345
|
color: '#B8E4A0',
|
|
5346
|
-
itemId:
|
|
5346
|
+
itemId: ITEM_CRAFTER_T1,
|
|
5347
5347
|
moduleType: MODULE_CRAFTER,
|
|
5348
5348
|
recipe: [
|
|
5349
5349
|
{ itemId: ITEM_TOOL_BIT, quantity: 3 },
|
|
@@ -7169,7 +7169,7 @@ function computeLoaderCapabilities(stats) {
|
|
|
7169
7169
|
quantity: 1,
|
|
7170
7170
|
};
|
|
7171
7171
|
}
|
|
7172
|
-
function
|
|
7172
|
+
function computeCrafterCapabilities(stats) {
|
|
7173
7173
|
const rea = stats.reactivity ?? 500;
|
|
7174
7174
|
const com = stats.composition ?? 500;
|
|
7175
7175
|
return {
|
|
@@ -7280,7 +7280,7 @@ function computeShipCapabilities(modules) {
|
|
|
7280
7280
|
let totalSpeed = 0;
|
|
7281
7281
|
let totalDrain = 0;
|
|
7282
7282
|
for (const m of crafterModules) {
|
|
7283
|
-
const caps =
|
|
7283
|
+
const caps = computeCrafterCapabilities(decodeCraftedItemStats(m.itemId, m.stats));
|
|
7284
7284
|
totalSpeed += caps.speed;
|
|
7285
7285
|
totalDrain += caps.drain;
|
|
7286
7286
|
}
|
|
@@ -8354,7 +8354,7 @@ const capabilityNames = [
|
|
|
8354
8354
|
'Loader',
|
|
8355
8355
|
'Gathering',
|
|
8356
8356
|
'Warp',
|
|
8357
|
-
'
|
|
8357
|
+
'Crafter',
|
|
8358
8358
|
'Launch',
|
|
8359
8359
|
'Hauler',
|
|
8360
8360
|
];
|
|
@@ -8372,13 +8372,13 @@ const capabilityAttributes = [
|
|
|
8372
8372
|
{ capability: 'Gathering', attribute: 'depth', description: 'Maximum gather depth' },
|
|
8373
8373
|
{ capability: 'Gathering', attribute: 'speed', description: 'Gathering speed/penetration' },
|
|
8374
8374
|
{ capability: 'Warp', attribute: 'range', description: 'Maximum warp distance' },
|
|
8375
|
-
{ capability: '
|
|
8375
|
+
{ capability: 'Crafter', attribute: 'speed', description: 'Crafting time per item' },
|
|
8376
8376
|
{
|
|
8377
|
-
capability: '
|
|
8377
|
+
capability: 'Crafter',
|
|
8378
8378
|
attribute: 'drain',
|
|
8379
8379
|
description: 'Energy consumed per second while crafting',
|
|
8380
8380
|
},
|
|
8381
|
-
{ capability: '
|
|
8381
|
+
{ capability: 'Crafter', attribute: 'quality', description: 'Modifier on output quality' },
|
|
8382
8382
|
{ capability: 'Launch', attribute: 'range', description: 'Maximum launch distance' },
|
|
8383
8383
|
{ capability: 'Launch', attribute: 'capacity', description: 'Maximum mass per launch' },
|
|
8384
8384
|
{ capability: 'Launch', attribute: 'drain', description: 'Energy consumed per launch' },
|
|
@@ -8473,9 +8473,9 @@ const statMappings = [
|
|
|
8473
8473
|
},
|
|
8474
8474
|
{
|
|
8475
8475
|
stat: 'Conductivity',
|
|
8476
|
-
capability: '
|
|
8476
|
+
capability: 'Crafter',
|
|
8477
8477
|
attribute: 'drain',
|
|
8478
|
-
rationale: 'Efficient energy transfer reduces
|
|
8478
|
+
rationale: 'Efficient energy transfer reduces crafting energy cost',
|
|
8479
8479
|
},
|
|
8480
8480
|
{
|
|
8481
8481
|
stat: 'Conductivity',
|
|
@@ -8485,9 +8485,9 @@ const statMappings = [
|
|
|
8485
8485
|
},
|
|
8486
8486
|
{
|
|
8487
8487
|
stat: 'Ductility',
|
|
8488
|
-
capability: '
|
|
8488
|
+
capability: 'Crafter',
|
|
8489
8489
|
attribute: 'quality',
|
|
8490
|
-
rationale: 'Precise shaping enables tighter
|
|
8490
|
+
rationale: 'Precise shaping enables tighter crafting tolerances',
|
|
8491
8491
|
},
|
|
8492
8492
|
{
|
|
8493
8493
|
stat: 'Ductility',
|
|
@@ -8545,7 +8545,7 @@ const statMappings = [
|
|
|
8545
8545
|
},
|
|
8546
8546
|
{
|
|
8547
8547
|
stat: 'Reactivity',
|
|
8548
|
-
capability: '
|
|
8548
|
+
capability: 'Crafter',
|
|
8549
8549
|
attribute: 'speed',
|
|
8550
8550
|
rationale: 'Reactive gases accelerate chemical/thermal processing',
|
|
8551
8551
|
},
|
|
@@ -8563,7 +8563,7 @@ const statMappings = [
|
|
|
8563
8563
|
},
|
|
8564
8564
|
{
|
|
8565
8565
|
stat: 'Thermal',
|
|
8566
|
-
capability: '
|
|
8566
|
+
capability: 'Crafter',
|
|
8567
8567
|
attribute: 'quality',
|
|
8568
8568
|
rationale: 'Precise thermal control during fabrication',
|
|
8569
8569
|
},
|
|
@@ -8605,7 +8605,7 @@ const statMappings = [
|
|
|
8605
8605
|
},
|
|
8606
8606
|
{
|
|
8607
8607
|
stat: 'Hardness',
|
|
8608
|
-
capability: '
|
|
8608
|
+
capability: 'Crafter',
|
|
8609
8609
|
attribute: 'speed',
|
|
8610
8610
|
rationale: 'Hard tooling surfaces cut and shape materials faster',
|
|
8611
8611
|
},
|
|
@@ -8623,19 +8623,19 @@ const statMappings = [
|
|
|
8623
8623
|
},
|
|
8624
8624
|
{
|
|
8625
8625
|
stat: 'Clarity',
|
|
8626
|
-
capability: '
|
|
8626
|
+
capability: 'Crafter',
|
|
8627
8627
|
attribute: 'quality',
|
|
8628
8628
|
rationale: 'Precision optics for calibration during fabrication',
|
|
8629
8629
|
},
|
|
8630
8630
|
{
|
|
8631
8631
|
stat: 'Clarity',
|
|
8632
|
-
capability: '
|
|
8632
|
+
capability: 'Crafter',
|
|
8633
8633
|
attribute: 'drain',
|
|
8634
8634
|
rationale: 'Precision computing optimizes energy routing in factory',
|
|
8635
8635
|
},
|
|
8636
8636
|
{
|
|
8637
8637
|
stat: 'Plasticity',
|
|
8638
|
-
capability: '
|
|
8638
|
+
capability: 'Crafter',
|
|
8639
8639
|
attribute: 'speed',
|
|
8640
8640
|
rationale: 'Easily reshaped materials speed up processing',
|
|
8641
8641
|
},
|
|
@@ -8665,9 +8665,9 @@ const statMappings = [
|
|
|
8665
8665
|
},
|
|
8666
8666
|
{
|
|
8667
8667
|
stat: 'Insulation',
|
|
8668
|
-
capability: '
|
|
8668
|
+
capability: 'Crafter',
|
|
8669
8669
|
attribute: 'drain',
|
|
8670
|
-
rationale: 'Better insulation reduces energy loss during
|
|
8670
|
+
rationale: 'Better insulation reduces energy loss during crafting',
|
|
8671
8671
|
},
|
|
8672
8672
|
{
|
|
8673
8673
|
stat: 'Insulation',
|
|
@@ -8850,9 +8850,9 @@ function computeCapabilityGroup(moduleType, stats) {
|
|
|
8850
8850
|
};
|
|
8851
8851
|
}
|
|
8852
8852
|
case MODULE_CRAFTER: {
|
|
8853
|
-
const caps =
|
|
8853
|
+
const caps = computeCrafterCapabilities(stats);
|
|
8854
8854
|
return {
|
|
8855
|
-
capability: '
|
|
8855
|
+
capability: 'Crafter',
|
|
8856
8856
|
attributes: [
|
|
8857
8857
|
{ label: 'Speed', value: caps.speed },
|
|
8858
8858
|
{ label: 'Drain', value: caps.drain },
|
|
@@ -9014,8 +9014,8 @@ const TEMPLATES = {
|
|
|
9014
9014
|
],
|
|
9015
9015
|
highlightKeys: ['quantity', 'thrust', 'mass'],
|
|
9016
9016
|
},
|
|
9017
|
-
|
|
9018
|
-
id: 'module.
|
|
9017
|
+
crafter: {
|
|
9018
|
+
id: 'module.crafter.description',
|
|
9019
9019
|
template: 'manufactures items at {speed} speed while draining {drain} energy per second',
|
|
9020
9020
|
params: [
|
|
9021
9021
|
['speed', 'Speed'],
|
|
@@ -9196,8 +9196,8 @@ function moduleDisplayName(itemId) {
|
|
|
9196
9196
|
return 'Gatherer';
|
|
9197
9197
|
case ITEM_LOADER_T1:
|
|
9198
9198
|
return 'Loader';
|
|
9199
|
-
case
|
|
9200
|
-
return '
|
|
9199
|
+
case ITEM_CRAFTER_T1:
|
|
9200
|
+
return 'Crafter';
|
|
9201
9201
|
case ITEM_STORAGE_T1:
|
|
9202
9202
|
return 'Storage';
|
|
9203
9203
|
default:
|
|
@@ -9343,5 +9343,5 @@ function describeItem(resolved, opts) {
|
|
|
9343
9343
|
return `${tier} ${resolved.name} · ${mass}`;
|
|
9344
9344
|
}
|
|
9345
9345
|
|
|
9346
|
-
export { ActionsManager, BASE_ORBITAL_MASS, CATEGORY_LABELS, COMMIT_ALREADY_SET, COMMIT_CANNOT_MATCH, COMMIT_NOT_SET, COMPANY_NOT_FOUND, CONTAINER_Z, CRAFT_ENERGY_DIVISOR, Container, Coordinates, DEPTH_THRESHOLD_T1, DEPTH_THRESHOLD_T2, DEPTH_THRESHOLD_T3, DEPTH_THRESHOLD_T4, DEPTH_THRESHOLD_T5, ENTITY_CAPACITY_EXCEEDED, EPOCH_NON_ZERO, EPOCH_NOT_READY, ERROR_SYSTEM_ALREADY_INITIALIZED, ERROR_SYSTEM_DISABLED, ERROR_SYSTEM_NOT_INITIALIZED, EntitiesManager, EntityInventory, EntityType, EpochsManager, GAME_NOT_FOUND, GAME_SEED_NOT_SET, GameState, INITIAL_CONTAINER_CAPACITY, INITIAL_CONTAINER_HULLMASS, INITIAL_WAREHOUSE_CAPACITY, INSUFFICIENT_BALANCE, INSUFFICIENT_ITEM_QUANTITY, INSUFFICIENT_ITEM_SUPPLY, INVALID_AMOUNT, ITEM_CARGO_ARM, ITEM_CARGO_LINING, ITEM_CARGO_LINING_T2, ITEM_CONTAINER_T1_PACKED, ITEM_CONTAINER_T2_PACKED, ITEM_DOES_NOT_EXIST, ITEM_ENGINE_T1, ITEM_FOCUSING_ARRAY, ITEM_GATHERER_T1, ITEM_GENERATOR_T1, ITEM_HAULER_T1, ITEM_HULL_PLATES, ITEM_HULL_PLATES_T2, ITEM_LOADER_T1,
|
|
9346
|
+
export { ActionsManager, BASE_ORBITAL_MASS, CATEGORY_LABELS, COMMIT_ALREADY_SET, COMMIT_CANNOT_MATCH, COMMIT_NOT_SET, COMPANY_NOT_FOUND, CONTAINER_Z, CRAFT_ENERGY_DIVISOR, Container, Coordinates, DEPTH_THRESHOLD_T1, DEPTH_THRESHOLD_T2, DEPTH_THRESHOLD_T3, DEPTH_THRESHOLD_T4, DEPTH_THRESHOLD_T5, ENTITY_CAPACITY_EXCEEDED, EPOCH_NON_ZERO, EPOCH_NOT_READY, ERROR_SYSTEM_ALREADY_INITIALIZED, ERROR_SYSTEM_DISABLED, ERROR_SYSTEM_NOT_INITIALIZED, EntitiesManager, EntityInventory, EntityType, EpochsManager, GAME_NOT_FOUND, GAME_SEED_NOT_SET, GameState, INITIAL_CONTAINER_CAPACITY, INITIAL_CONTAINER_HULLMASS, INITIAL_WAREHOUSE_CAPACITY, INSUFFICIENT_BALANCE, INSUFFICIENT_ITEM_QUANTITY, INSUFFICIENT_ITEM_SUPPLY, INVALID_AMOUNT, ITEM_CARGO_ARM, ITEM_CARGO_LINING, ITEM_CARGO_LINING_T2, ITEM_CONTAINER_T1_PACKED, ITEM_CONTAINER_T2_PACKED, ITEM_CRAFTER_T1, ITEM_DOES_NOT_EXIST, ITEM_ENGINE_T1, ITEM_FOCUSING_ARRAY, ITEM_GATHERER_T1, ITEM_GENERATOR_T1, ITEM_HAULER_T1, ITEM_HULL_PLATES, ITEM_HULL_PLATES_T2, ITEM_LOADER_T1, ITEM_MATTER_CONDUIT, ITEM_NOT_AVAILABLE_AT_LOCATION, ITEM_POWER_CELL, ITEM_REACTION_CHAMBER, ITEM_SHIP_T1_PACKED, ITEM_STORAGE_T1, ITEM_SURVEY_PROBE, ITEM_THRUSTER_CORE, ITEM_TOOL_BIT, ITEM_TYPE_COMPONENT, ITEM_TYPE_ENTITY, ITEM_TYPE_MODULE, ITEM_TYPE_RESOURCE, ITEM_WAREHOUSE_T1_PACKED, InventoryAccessor, Item, LOCATION_MAX_DEPTH, LOCATION_MIN_DEPTH, Location, LocationType, LocationsManager, MAX_ORBITAL_ALTITUDE, MIN_ORBITAL_ALTITUDE, MODULE_ANY, MODULE_CRAFTER, MODULE_ENGINE, MODULE_GATHERER, MODULE_GENERATOR, MODULE_HAULER, MODULE_LAUNCHER, MODULE_LOADER, MODULE_STORAGE, MODULE_WARP, index as NFT, NO_SCHEDULE, PLANET_SUBTYPE_GAS_GIANT, PLANET_SUBTYPE_ICY, PLANET_SUBTYPE_INDUSTRIAL, PLANET_SUBTYPE_OCEAN, PLANET_SUBTYPE_ROCKY, PLANET_SUBTYPE_TERRESTRIAL, PLAYER_ALREADY_JOINED, PLAYER_NOT_FOUND, PRECISION$1 as PRECISION, platform as PlatformContract, Player, PlayersManager, RECIPE_INPUTS_EXCESS, RECIPE_INPUTS_INSUFFICIENT, RECIPE_INPUTS_INVALID, RECIPE_INPUTS_MIXED, REQUIRES_MORE_THAN_ONE, REQUIRES_POSITIVE_VALUE, RESERVE_TIERS, SHIP_ALREADY_THERE, SHIP_ALREADY_TRAVELING, SHIP_CANNOT_BUY_TRAVELING, SHIP_CANNOT_CANCEL_TASK, SHIP_CANNOT_UPDATE_TRAVELING, SHIP_CARGO_NOT_LOADED, SHIP_CARGO_NOT_OWNED, SHIP_INVALID_CARGO, SHIP_INVALID_DESTINATION, SHIP_INVALID_TRAVEL_DURATION, SHIP_NOT_ARRIVED, SHIP_NOT_ENOUGH_ENERGY, SHIP_NOT_ENOUGH_ENERGY_CAPACITY, SHIP_NOT_FOUND, SHIP_NOT_IDLE, SHIP_NOT_OWNED, SHIP_NO_COMPLETED_TASKS, SHIP_NO_TASKS_TO_CANCEL, ScheduleAccessor, server as ServerContract, Ship, Shipload, TIER_ADJECTIVES, TIER_ROLL_MAX, TRAVEL_MAX_DURATION, TaskCancelable, TaskType, WAREHOUSE_ALREADY_AT_LOCATION, WAREHOUSE_CAPACITY_EXCEEDED, WAREHOUSE_NOT_FOUND, WAREHOUSE_Z, Warehouse, availableCapacity$1 as availableCapacity, availableCapacityFromMass, blendCargoStacks, blendComponentStacks, blendCrossGroup, blendStacks, buildEntityDescription, calcCargoItemMass, calcCargoMass, calcEnergyUsage, calcLoadDuration, calcStacksMass, calc_acceleration, calc_craft_duration, calc_craft_energy, calc_energyusage, calc_flighttime, calc_gather_duration, calc_gather_energy, calc_loader_acceleration, calc_loader_flighttime, calc_orbital_altitude, calc_rechargetime, calc_ship_acceleration, calc_ship_flighttime, calc_ship_mass, calc_ship_rechargetime, calc_transfer_duration, calculateFlightTime, calculateLoadTimeBreakdown, calculateRefuelingTime, calculateTransferTime, canMove, capabilityAttributes, capabilityNames, capsHasCrafter, capsHasGatherer, capsHasHauler, capsHasLoaders, capsHasMass, capsHasMovement, capsHasStorage, cargoItemToStack, cargoUtils, categoryColors, categoryIconShapes, categoryIcons, categoryItemMass, componentIcon, components, computeBaseCapacityShip, computeBaseCapacityWarehouse, computeBaseHullmass, computeComponentStats, computeContainerCapabilities, computeContainerT2Capabilities, computeCraftedOutputStats, computeCrafterCapabilities, computeCrafterDrain, computeCrafterSpeed, computeEngineCapabilities, computeEngineDrain, computeEngineThrust, computeEntityStats, computeGathererCapabilities, computeGathererDepth, computeGathererDrain, computeGathererSpeed, computeGathererYield, computeGeneratorCap, computeGeneratorCapabilities, computeGeneratorRech, computeHaulPenalty, computeHaulerCapabilities, computeHaulerDrain, computeInputMass, computeLoaderCapabilities, computeLoaderMass, computeLoaderThrust, computeShipCapabilities, computeShipHullCapabilities, computeStorageCapabilities, computeWarehouseCapabilities, computeWarehouseHullCapabilities, coordsToLocationId, createInventoryAccessor, createProjectedEntity, createScheduleAccessor, decodeCraftedItemStats, decodeStat, decodeStats, Shipload as default, deriveLocation, deriveLocationEpoch, deriveLocationSize, deriveLocationStatic, deriveResourceStats, deriveStratum, describeItem, describeModule, describeModuleForItem, describeModuleForSlot, deserializeAsset, deserializeComponent, deserializeEntity, deserializeModule, deserializeResource, displayName, distanceBetweenCoordinates, distanceBetweenPoints, encodeGatheredCargoStats, encodeStats, energyPercent, entityDisplayName, entityRecipes, estimateDealTravelTime, estimateTravelTime, findNearbyPlanets, formatMass, formatMassDelta, formatModuleLine, getAllCraftableItems, getCapabilityAttributes, getCategoryInfo, getComponentById, getComponentsForCategory, getComponentsForStat, getCurrentEpoch, getDepthThreshold, getDestinationLocation, getEligibleResources, getEntityRecipe, getEntityRecipeByItemId, getEntitySlotLayout, getEpochInfo, getFlightOrigin, getItem, getItems, getLocationCandidates, getLocationType, getLocationTypeName, getModuleCapabilityType, getModuleRecipe, getModuleRecipeByItemId, getPlanetSubtype, getPlanetSubtypes, getPositionAt, getResourceTier, getResourceWeight, getStatDefinitions, getStatMappings, getStatMappingsForCapability, getStatMappingsForStat, getStatName, getSystemName, hasEnergy, hasEnergyForDistance$1 as hasEnergyForDistance, hasGatherer, hasLoaders, hasMass, hasSchedule, hasSpace$1 as hasSpace, hasSpaceForMass, hasStorage, hasSystem, hash, hash512, isCraftedItem, isFull$1 as isFull, isFullFromMass, isGatherableLocation, isInvertedAttribute, isModuleItem, isRelatedItem, itemAbbreviations, itemCategory, itemIds, itemOffset, itemTier, itemTypeCode, lerp, makeContainer, makeShip, makeWarehouse, maxTravelDistance, mergeStacks, moduleAccepts, moduleDisplayName, moduleIcon, moduleRecipes, needsRecharge, projectEntity, projectEntityAt, readCommonBase, removeFromStacks, renderDescription, resolveItem, resolveStats, rollTier, rollWithinTier, rotation, schedule, stackKey, stackToCargoItem, stacksEqual, statMappings, tierColors, tierLabels, tierNumber, toLocation, validateSchedule };
|
|
9347
9347
|
//# sourceMappingURL=shipload.m.js.map
|