-
Notifications
You must be signed in to change notification settings - Fork 217
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* First steps towards integrating Kerbalism into RO/RP-1
- v3.19.0.0
- v3.18.0.0
- v3.17.0.0
- v3.16.0.0
- v3.15.0.0
- v3.14.0.0
- v3.13.0.0
- v3.12.0.0
- v3.11.0.0
- v3.10.0.0
- v3.9.0.0
- v3.8.0.0
- v3.7.0.0
- v3.6.1.0
- v3.6.0.0
- v3.5.0.0
- v3.4.0.0
- v3.3.0.1
- v3.3.0.0
- v3.2.1.0
- v3.2.0.1
- v3.2.0.0
- v3.1.1.2
- v3.1.1.1
- v3.1.1.0
- v3.0.0.2
- v3.0.0.1
- v3.0.0.0
- v2.13.0.0
- v2.12.0.0
- v2.11.0.1
- v2.11.0.0
- v2.10.0.0
- v2.9.1.1
- v2.9.1.0
- v2.9.0.1
- v2.9.0.0
- v2.8.1.0
- v2.8.0.0
- v2.7.1.0
- v2.7.0.0
- v2.6.4.0
- v2.6.3.0
- v2.6.2.0
- v2.6.1.1
- v2.6.0.0
- v2.5.0.0
- v2.4.2.0
- v2.4.1.0
- v2.4.0.0
- v2.3.0.0
- v2.2.0.0
- v2.1.0.0
- v2.0.2.0
- v2.0.1.0
- v2.0.0.0
- v1.13.2.2
- v1.13.2.1
- v1.13.2.0
- v1.13.1.0
- v1.13.0.0
- v1.12.19.0
- v1.12.18.0
- v1.12.17.0
- v1.12.16.0
- v1.12.15.0
- v1.12.14.0
- v1.12.13.0
- v1.12.12.0
- v1.12.11.0
- v1.12.10.0
- v1.12.9.0
- v1.12.8.0
- v1.12.7.0
- v1.12.6.0
- v1.12.5.0
- v1.12.4.0
- v1.12.3.0
- v1.12.2.0
- v1.12.1.0
- v1.12.0.0
- v1.11.11.0
- v1.11.10.0
- v1.11.9.0
- v1.11.8.0
- v1.11.7.0
- v1.11.6.0
- v1.11.5.0
- v1.11.4.0
- v1.11.3.0
- v1.11.2.0
- v1.11.1.0
- v1.11.0.0
- v1.10.7.0
- v1.10.6.1
- v1.10.6.0
- v1.10.5.0
- v1.10.4.0
- v1.10.3.0
- v1.10.2.0
- v1.10.0.1
- v1.10.0.0
- v1.9.1
- v1.9.0
- v1.8.1
- v1.8
- v1.7
- v1.6
- v1.5
- v1.4.1
- v1.3
- v1.2.1
- v1.2
- v1.1.1
- v1.1
- 3.1.0.0
- 3.0.1.0
- 1.4
Showing
1 changed file
with
91 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,91 @@ | ||
// ================================================================================= | ||
// This is the official profile of the Realism Overhaul Mod | ||
// ================================================================================= | ||
|
||
// TO-DO's | ||
// | ||
// * Determine proper amount of EC on_eva | ||
Profile | ||
{ | ||
name = RealismOverhaul | ||
// SUPPLIES | ||
Supply | ||
{ | ||
resource = ElectricCharge | ||
//on_eva = 33.0 | ||
low_message = $VESSEL batteries are getting low@<i>We must shut down non-essential systems</i> | ||
empty_message = $VESSEL has run out of ElectricCharge@<i>Life support systems are off</i>|$VESSEL is out of ElectricCharge@<i>We no longer have control</i> | ||
refill_message = $VESSEL batteries have been recharged@<i>All systems are back online</i> | ||
} | ||
Supply | ||
{ | ||
resource = Food | ||
on_pod = 29.25 // 5 days | ||
low_message = Food reserves are getting low on $VESSEL@<i>All edible items are being rationed</i> | ||
empty_message = There is no more food on $VESSEL@<i>The crew prepares for the worst</i> | ||
refill_message = $VESSEL food reserves restored@<i>Rations have returned to normal amounts</i> | ||
} | ||
Supply | ||
{ | ||
resource = Water | ||
on_pod = 19.36 // 5 Days | ||
low_message = Water reserves are getting low on $VESSEL@<i>Bathing has been suspended</i> | ||
empty_message = $VESSEL is completely out of water@<i>We are in a state of emergency</i> | ||
refill_message = $VESSEL has restocked water reserves@<i>Regular bathing schedules can resume</i> | ||
} | ||
Supply | ||
{ | ||
resource = Oxygen | ||
on_pod = 2960 // 5 Days | ||
low_message = Oxygen reserves are dangerously low on $VESSEL@<i>Something must be done immediately</i> | ||
empty_message = $VESSEL has run out of Oxygen@<i>It is only a matter of time for the crew</i> | ||
refill_message = $VESSEL Oxygen reserves refilled@<i>Everyone is breathing easier</i> | ||
} | ||
Supply | ||
{ | ||
resource = Nitrogen | ||
low_message = Nitrogen reserves are low on $VESSEL@<i>Please send a resupply mission</i> | ||
empty_message = $VESSEL is out of Nitrogen@<i>The crew should consider getting in their suits</i> | ||
refill_message = $VESSEL Nitrogen reserves refilled@<i>Normal operations can resume</i> | ||
} | ||
Supply | ||
{ | ||
resource = LithiumHydroxide | ||
low_message = Lithium Hydroxide reserves are low on $VESSEL@<i>Please send a resupply mission</i> | ||
empty_message = $VESSEL is out of Lithium Hydroxide@<i>We can no longer scrub CO2</i> | ||
refill_message = $VESSEL Lithium Hydroxide reserves refilled@<i>Normal operations can resume</i> | ||
} | ||
Supply | ||
{ | ||
resource = CarbonDioxide | ||
low_message = Carbon Dioxide concentration is rising on $VESSEL@<i>We must turn on the scrubbers</i> | ||
empty_message = $VESSEL Carbon Dioxide concentration is dangerously high@<i>We must do something immediately</i> | ||
refill_message = $VESSEL CO2 levels have normalized@<i>Normal operations can resume</i> | ||
} | ||
Supply | ||
{ | ||
resource = Ammonia | ||
low_message = $VESSEL Ammonia reserves are low | ||
empty_message = $VESSEL Ammonia tanks are empty | ||
refill_message = $VESSEL has refilled the Ammonia tanks | ||
} | ||
Supply | ||
{ | ||
resource = LqdHydrogen | ||
low_message = $VESSEL Liquid Hydrogen reserves are low | ||
empty_message = $VESSEL Liquid Hydrogen tanks are empty | ||
refill_message = $VESSEL has refilled the Liquid Hydrogen tanks | ||
} | ||
Supply | ||
{ | ||
resource = LqdOxygen | ||
low_message = $VESSEL Liquid Oxygen reserves are low | ||
empty_message = $VESSEL Liquid Oxygen tanks are empty | ||
refill_message = $VESSEL has refilled the Liquid Oxygen tanks | ||
} | ||
// RULES | ||
} |
220a675
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Shouldn't this also be part of RO? RP should only:
220a675
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes this will definitely be part of RO. I just store it here because no one but me or NK push commits to RP-0. I will move it over when ready, or should I just start a new branch for it in RO?
220a675
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Oh, i though that you had write access to the RO repository...sorry for that then!