Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

BoringCrewServices Support #164

Merged
merged 2 commits into from
Nov 18, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
}
}
Loading