Skip to content
Open
Show file tree
Hide file tree
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
190 changes: 190 additions & 0 deletions GameData/Benjee10_MMSEV/Patches/USI-LS/Command.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,190 @@
//
// life support for the rover command module
//
@PART[Benjee10_MMSEV]:FOR[PlanetsideExplorationTechnologies]:NEEDS[USILifeSupport]
{
MODULE
{
name = USI_SwapController
}
MODULE
{
name = USI_SwappableBay
bayName = Bay 1
moduleIndex = 0
}
MODULE
{
name = USI_Converter
UseSpecialistBonus = false
}
MODULE
{
name = USILS_LifeSupportRecyclerSwapOption
ConverterName = Life Support
StartActionName = Start Life Support
StopActionName = Stop Life Support

CrewCapacity = 4
RecyclePercent = 0.5

INPUT_RESOURCE
{
ResourceName = ElectricCharge
Ratio = 1.00
}
}
}


//
// life support for the command cabin - based on Ranger MiniHab
//
@PART[Benjee10_MMSEV_baseLander]:FOR[PlanetsideExplorationTechnologies]:NEEDS[USILifeSupport]
{
MODULE
{
name = USI_SwapController
}
MODULE
{
name = USI_SwappableBay
bayName = Bay 1
moduleIndex = 0
}
MODULE
{
name = USI_Converter
UseSpecialistBonus = false
}
MODULE
{
name = USILS_HabitationSwapOption
ConverterName = Habitat
StartActionName = Start Habitat
StopActionName = Stop Habitat

BaseKerbalMonths = 0
CrewCapacity = 2
BaseHabMultiplier = 1.8


INPUT_RESOURCE
{
ResourceName = ElectricCharge
Ratio = 0.15
}
}
MODULE
{
name = USILS_LifeSupportRecyclerSwapOption
ConverterName = Life Support
StartActionName = Start Life Support
StopActionName = Stop Life Support

CrewCapacity = 4
RecyclePercent = 0.25

INPUT_RESOURCE
{
ResourceName = ElectricCharge
Ratio = 0.5
}
}
}


//
// life support for the largest command node module - based on Duna Kerbitat and Duna Kolonist
//
@PART[Benjee10_MMSEV_baseHDU]:FOR[PlanetsideExplorationTechnologies]:NEEDS[USILifeSupport]
{
MODULE
{
name = USI_SwapController
ResourceCosts = SpecializedParts,27,MaterialKits,135,ElectricCharge,135
}
MODULE
{
name = USI_SwappableBay
bayName = Bay 1
moduleIndex = 0
}
MODULE
{
name = USI_Converter
UseSpecialistBonus = false
}
MODULE
{
name = USILS_LifeSupportRecyclerSwapOption
ConverterName = Recycler
StartActionName = Start Recycler
StopActionName = Stop Recycler

CrewCapacity = 6
RecyclePercent = 0.70

INPUT_RESOURCE
{
ResourceName = ElectricCharge
Ratio = 10.5
}
}
MODULE
{
name = USILS_LifeSupportRecyclerSwapOption
ConverterName = Purifier
StartActionName = Start Purifier
StopActionName = Stop Purifier

CrewCapacity = 6
RecyclePercent = 0.85

INPUT_RESOURCE
{
ResourceName = ElectricCharge
Ratio = 10.5
}
INPUT_RESOURCE
{
ResourceName = Water
Ratio = 0.00850
}
}
MODULE
{
name = USILS_HabitationSwapOption
ConverterName = Habitat
StartActionName = Start Habitat
StopActionName = Stop Habitat

BaseKerbalMonths = 0
CrewCapacity = 6
BaseHabMultiplier = 1.2

INPUT_RESOURCE
{
ResourceName = ElectricCharge
Ratio = 0.18
}
}
MODULE
{
name = USILS_LifeSupportExtenderSwapOption
ConverterName = Living Module
StartActionName = Start Living Module
StopActionName = Stop Living Module

INPUT_RESOURCE
{
ResourceName = ElectricCharge
Ratio = 18
}
INPUT_RESOURCE
{
ResourceName = ColonySupplies
Ratio = 0.000833
}
}
}
77 changes: 77 additions & 0 deletions GameData/Benjee10_MMSEV/Patches/USI-LS/Converters.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,77 @@
//
// Life support for the hydroponics module.
// This is the 'light' version - if MKS is installed then the MKS patch will
// default to the more complex version based on the Tundra module
//
@PART[Benjee10_MMSEV_baseGreenhouse]:FOR[PlanetsideExplorationTechnologies]:NEEDS[USILifeSupport&!MKS]
{
MODULE
{
name = USI_SwapController
}
MODULE
{
name = USI_SwappableBay
bayName = Bay 1
moduleIndex = 0
}
MODULE
{
name = USI_Converter
UseSpecialistBonus = false
}
MODULE
{
name = USI_ConverterSwapOption
ConverterName = Agroponics
StartActionName = Start Agroponics
StopActionName = Stop Agroponics

INPUT_RESOURCE
{
ResourceName = Mulch
Ratio = 0.00210000
}
INPUT_RESOURCE
{
ResourceName = Fertilizer
Ratio = 0.000210000
}
OUTPUT_RESOURCE
{
ResourceName = Supplies
Ratio = 0.00231000
DumpExcess = False
}
INPUT_RESOURCE
{
ResourceName = ElectricCharge
Ratio = 4.62
}
}
RESOURCE
{
name = Supplies
amount = 0
maxAmount = 500
}
RESOURCE
{
name = Fertilizer
amount = 0
maxAmount = 500
}
RESOURCE
{
name = Mulch
amount = 0
maxAmount = 500
}
RESOURCE
{
name = ElectricCharge
amount = 1000
maxAmount = 1000
}

}
Loading