Skip to content

Instantly share code, notes, and snippets.

@alex-d-boyd
Created April 10, 2021 08:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save alex-d-boyd/97360d6dee6307458b962dac6cda9fbc to your computer and use it in GitHub Desktop.
Save alex-d-boyd/97360d6dee6307458b962dac6cda9fbc to your computer and use it in GitHub Desktop.
Module Manager Config File to add EVA construction and cargo storage to SCANsat parts.
// KSP Module Manager Config File
// Add Cargo part status to SCANsat parts
// Author: Alex Boyd (AlexinTokyo)
// Part: SCAN Been There Done That®, Mass: 0.02
@PART[scansat-exomars-1]:FINAL
{
MODULE
{
name = ModuleCargoPart
packedVolume = 20
}
}
// Part: MS-R Enhanced Multispectral Scanner, Mass: 0.125
@PART[scansat-multi-abi-1]:FINAL
{
MODULE
{
name = ModuleCargoPart
packedVolume = 250
}
}
// Part: MS-1 Multispectral Scanner, Mass: 0.075
@PART[scansat-multi-modis-1]:FINAL
{
MODULE
{
name = ModuleCargoPart
packedVolume = 100
}
}
// Part: MS-2A Advanced Multispectral Scanner, Mass: 0.25
@PART[scansat-multi-msi-1]:FINAL
{
MODULE
{
name = ModuleCargoPart
packedVolume = -1
}
}
// Part: R-3B Radar Altimeter, Mass: 0.075
@PART[scansat-radar-poseidon-3b-1]:FINAL
{
MODULE
{
name = ModuleCargoPart
packedVolume = 400
}
}
// Part: R-EO-1 Radar Antenna, Mass: 0.125
@PART[scansat-radar-seasat-1]:FINAL
{
MODULE
{
name = ModuleCargoPart
packedVolume = -1
}
}
// Part: VS-1 High Resolution Imager, Mass: 0.05
@PART[scansat-recon-ikonos-1]:FINAL
{
MODULE
{
name = ModuleCargoPart
packedVolume = 280
}
}
// Part: VS-11 Classified Reconnaissance Imager, Mass: 1.75
// Part is TOO big for EVA construction
// @PART[scansat-recon-kh11-1]:FINAL
// {
// MODULE
// {
// name = ModuleCargoPart
// packedVolume =
// }
//}
// Part: VS-3 Advanced High Resolution Imager, Mass: 0.3
@PART[scansat-recon-worldview-3-1]:FINAL
{
MODULE
{
name = ModuleCargoPart
packedVolume = 1200
}
}
// Part: SCAN-R Resource Mapper, Mass: 0.1
@PART[scansat-resources-crism-1]:FINAL
{
MODULE
{
name = ModuleCargoPart
packedVolume = 50
}
}
// Part: SCAN-RX Hyperspectral Resource Mapper, Mass: 0.5
@PART[scansat-resources-hyperion-1]:FINAL
{
MODULE
{
name = ModuleCargoPart
packedVolume = 300
}
}
// Part: SCAN-R2 Advanced Resource Mapper, Mass: 0.275
@PART[scansat-resources-mise-1]:FINAL
{
MODULE
{
name = ModuleCargoPart
packedVolume = 100
}
}
// Part: SAR-X Antenna, Mass: 0.18
@PART[scansat-sar-paz-1]:FINAL
{
MODULE
{
name = ModuleCargoPart
packedVolume = 85
}
}
// Part: SAR-C Antenna, Mass: 0.4
@PART[scansat-sar-radarsat-2-1]:FINAL
{
MODULE
{
name = ModuleCargoPart
packedVolume = -1
}
}
// Part: SAR-L Antenna, Mass: 0.8
@PART[scansat-sar-tandem-l-1]:FINAL
{
MODULE
{
name = ModuleCargoPart
packedVolume = -1
}
}
@TedThompson
Copy link

Perfect! Thanks for sharing this work - I was a little surprised that even the smol bits didn't have Cargo attributes.

@alex-d-boyd
Copy link
Author

@TedThompson You're most welcome - happy to hear it helped someone.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment