Skip to content

Commit

Permalink
BoringCrewServices Support (#164)
Browse files Browse the repository at this point in the history
* 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
SkyPhoenix999 and Capkirk123 authored Nov 18, 2024
1 parent caf10bb commit 5ea0dca
Showing 1 changed file with 89 additions and 0 deletions.
89 changes: 89 additions & 0 deletions GameData/KerbalismConfig/Support/BoringCrewServices.cfg
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
}
}

0 comments on commit 5ea0dca

Please sign in to comment.