Kerbalism config
zer0Kerbal opened this issue ยท 1 comments
`// Kerbalism.cfg v1.0.0.0
// Mini Sample Return Capsule (MSRC)
// created: 19 Jan 2022
// updated:
//==========Tweakables==========\
@KERBALISM_HDD_SIZES:BEFORE[KerbalismDefault]:NEEDS[MiniSampleReturnCapsule,FeatureScience]
{
SampleReturnCapsule
{
msrc-cargobay
{
hddSize = 0
sampleStorage = 12
}
msrc-parachute
{
hddSize = 1
sampleStorage = 0
}
}
}
//==========Patches==========\
@part[msrc-cargobay]:NEEDS[MiniSampleReturnCapsule,FeatureScience]:AFTER[KerbalismDefault]
{
%MODULE[HardDrive]
{
%dataCapacity = #$@KERBALISM_HDD_SIZES/SampleReturnCapsule/CargoBay/hddSize$
%sampleCapacity = #$@KERBALISM_HDD_SIZES/SampleReturnCapsule/CargoBay/sampleStorage$
}
}
@part[msrc-parachute]:NEEDS[MiniSampleReturnCapsule,FeatureScience]:AFTER[KerbalismDefault]
{
@module[HardDrive]
{
@dataCapacity = #$@KERBALISM_HDD_SIZES/SampleReturnCapsule/ProbeCore/hddSize$
@sampleCapacity = #$@KERBALISM_HDD_SIZES/SampleReturnCapsule/ProbeCore/sampleStorage$
}
}
//==========Add an antenna(Commtech 16S)==========\
@part[msrc-parachute]:NEEDS[MiniSampleReturnCapsule]:FOR[KerbalismDefault]
{
@module[ModuleDataTransmitter]
{
@antennaType = DIRECT
@packetInterval = 0.6
@packetSize = 2
@packetResourceCost = 12.0
@requiredResource = ElectricCharge
@antennaPower = 500000
@antennaCombinable = False
}
}
//==========Moving Parts to Science Category==========\
@part[msrc-cargobay,msrc-parachute] {category = Science}
// Made by Breach Candy#6128
// updated from an existing config by @zer0Kerbal
`