diff --git a/GameData/KerbalismConfig/Support/BoringCrewServices.cfg b/GameData/KerbalismConfig/Support/BoringCrewServices.cfg new file mode 100644 index 0000000..80ebeb4 --- /dev/null +++ b/GameData/KerbalismConfig/Support/BoringCrewServices.cfg @@ -0,0 +1,89 @@ +// Starliner Command Module +@PART[BCS_Centauri_CrewCapsule]:NEEDS[BoringCrewServices]:AFTER[RealismOverhaul] +{ + @MODULE[Habitat] + { + %volume = 11 + %surface = 35 //guess, very similar dimensions to Orion + } + %capsuleScrubbers = true + %scrubberCapacity = 7 //designed for 7 passengers + %capsuleOrigin = US + @MODULE[ModuleCommand] + { + @RESOURCE[ElectricCharge] + { + @rate = 0.600 //Remove Climatization and LS power draw + } + } + MODULE + { + name = ProcessController + resource = _PressureControl + title = N2 Pressure Controller + desc = Use Nitrogen to maintain the internal atmosphere at a comfortable pressure. + capacity = 7 + toggle = true + running = true + } + @MODULE[ProcessController],* + { + @capacity *= #$/CrewCapacity$ + } +} + +@PART[BCS_Centauri_CrewCapsule]:NEEDS[RealFuels]:AFTER[RealismOverhaul] +{ + @description ^= :$: Supports a crew of 7 for 2 days.: + @mass -= 0.07 + @MODULE[ModuleFuelTanks] + { + // 7 Crew for 2 Days, Tanks filled for 4 people for ~4 Days + @volume = 460 + TANK + { + name = Food + amount = 100 + maxAmount = 100 + } + TANK + { + name = Water + amount = 67 + maxAmount = 67 + } + TANK + { + name = Oxygen + amount = 10000 + maxAmount = 10000 + } + TANK + { + name = Nitrogen + amount = 200 + maxAmount = 200 + } + TANK + { + name = Waste + amount = 0 + maxAmount = 9.32 + } + TANK + { + name = WasteWater + amount = 0 + maxAmount = 34.47 + } + } +} + +@PART[BCS_Centauri_CrewCapsule]:NEEDS[BoringCrewServices,FeatureHabitat]:AFTER[zzzKerbalism] +{ + @MODULE[Habitat] + { + %volume = 11 + %surface = 35 //guess, very similar dimensions to Orion + } +}