-
Notifications
You must be signed in to change notification settings - Fork 100
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
Showing
1 changed file
with
64 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,64 @@ | ||
# Configuration file | ||
|
||
general { | ||
|
||
########################################################################################################## | ||
# nuclear options | ||
#--------------------------------------------------------------------------------------------------------# | ||
# Config options for Supercritical | ||
########################################################################################################## | ||
|
||
"nuclear options" { | ||
# How much the amount of power required to boil a coolant is divided by. | ||
# Default: 14 | ||
# Min: 0.1 | ||
# Max: 1000.0 | ||
D:fissionCoolantDivisor=14.0 | ||
|
||
# The level of detail to which fission reactors are analyzed. May cause more lag at higher values. | ||
# Default: 100 | ||
# Min: 5 | ||
# Max: 10000 | ||
D:fissionReactorResolution=100.0 | ||
|
||
# Nuclear coolant heat exchanger recipe efficiency multiplier for balancing purposes. | ||
# Default: 0.1 | ||
# Min: 0.0 | ||
# Max: 1000.0 | ||
D:heatExchangerEfficiencyMultiplier=0.25 | ||
|
||
# Nuclear Max Power multiplier for balancing purposes. | ||
# Default: 0.1 | ||
# Min: 0.0 | ||
# Max: 10000.0 | ||
D:nuclearPowerMultiplier=0.1 | ||
} | ||
|
||
########################################################################################################## | ||
# misc options | ||
#--------------------------------------------------------------------------------------------------------# | ||
# Miscellaneous options for Supercritical | ||
########################################################################################################## | ||
|
||
"misc options" { | ||
# Remove all materials from Supercritical | ||
# Default: false | ||
B:disableAllMaterials=true | ||
|
||
# Remove all recipes from Supercritical | ||
# Default: false | ||
B:disableAllRecipes=true | ||
|
||
# Whether to register heat exchanger or not. Useful for SuSy. | ||
# Default: true | ||
B:enableHX=false | ||
|
||
# Do material modifications, like adding flags or properties. | ||
# Modpack devs might want to disable this to reduce conflicts. | ||
# Default: true | ||
B:enableMaterialModifications=false | ||
} | ||
|
||
} | ||
|
||
|