From 5ea0dca386e7221bf7c2521befaaf072d633cd96 Mon Sep 17 00:00:00 2001 From: SkyPhoenix999 <54157874+SkyPhoenix999@users.noreply.github.com> Date: Sun, 17 Nov 2024 22:40:59 -0500 Subject: [PATCH] BoringCrewServices Support (#164) * BoringCrewServices Support Changes only made for the Starliner Command Module * Don't limit it to 2 crew only thx --------- Co-authored-by: Capkirk123 --- .../Support/BoringCrewServices.cfg | 89 +++++++++++++++++++ 1 file changed, 89 insertions(+) create mode 100644 GameData/KerbalismConfig/Support/BoringCrewServices.cfg 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 + } +}