-
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.
- Loading branch information
1 parent
22850a1
commit 3d258b0
Showing
2 changed files
with
79 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,58 @@ | ||
// Original Fuji mod by Beale and maintained by Well, converted for Realism Overhaul/Kerbalism by Pipcard (mikusingularity) | ||
// Kerbalism devs, please include if this is approved | ||
|
||
// Fuji Core Module | ||
@PART[Polaris_Crew_B]:NEEDS[Fuji]:AFTER[RealismOverhaul] | ||
{ | ||
@MODULE[Habitat] | ||
{ | ||
%volume = 2.0 //assume half of estimated capsule volume | ||
%surface = 11.5 //assume half of estimated capsule surface area | ||
} | ||
} | ||
|
||
// Fuji Expansion Module | ||
@PART[Polaris_Orbital_A]:NEEDS[Fuji]:AFTER[RealismOverhaul] | ||
{ | ||
@MODULE[Habitat] | ||
{ | ||
%volume = 17.5 //similar to ROCapsules Apollo Block IV Mission Module (Eyes Turned Skyward) | ||
%surface = 33.1 //ditto | ||
} | ||
|
||
MODULE | ||
{ | ||
name = ProcessController | ||
resource = _PressureControl | ||
title = N2 Pressure Controller | ||
desc = Use <b>Nitrogen</b> to maintain the internal atmosphere at a comfortable pressure. | ||
capacity = 10 | ||
toggle = true | ||
running = true | ||
} | ||
} | ||
|
||
// ============================================================================ | ||
// SCIENCE | ||
// ============================================================================ | ||
|
||
//crew experiements | ||
// Crew Science: | ||
// (Gemini) Orbital Maneuvering, Visual Acuity, Star Occultation Navigation, Power Tool Evaluation, Simple Organism Egg Growth, Synergistic Effect of Zero Gravity and Radiation on White Blood Cells, In-Flight Sleep Analysis, Food Evaluation, In-flight Work Tolerance, Simple Navigation, Zodiacal Light Photography, UHF/VHF Polarization | ||
// (Apollo) Space Television Broadcast, Ion Sensing Altitude Control, Night Image Intensification, Synoptic Terrain Photography, Synoptic Weather Photography | ||
|
||
@PART[Polaris_Crew_B]:NEEDS[Fuji,FeatureScience,RP-0]:BEFORE[RP-0-Kerbalism] { %capsuleTier = Mature } //Apollo | ||
|
||
//hard drive | ||
|
||
@PART[Polaris_Crew_B]:NEEDS[ROCapsules,FeatureScience,RP-0]:FOR[RP-0-Kerbalism] | ||
{ | ||
!MODULE[HardDrive] {} | ||
MODULE | ||
{ | ||
name = HardDrive | ||
title = Data Storage | ||
dataCapacity = #$@KERBALISM_HDD_SIZES/apollo/data$ | ||
sampleCapacity = #$@KERBALISM_HDD_SIZES/apollo/samples$ | ||
} | ||
} |
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