-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* BoringCrewServices Support Changes only made for the Starliner Command Module * Don't limit it to 2 crew only thx --------- Co-authored-by: Capkirk123 <[email protected]>
- Loading branch information
1 parent
caf10bb
commit 5ea0dca
Showing
1 changed file
with
89 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 <b>Nitrogen</b> 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 | ||
} | ||
} |