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

update ncn #1117

Merged
merged 1 commit into from
Nov 14, 2024
Merged
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
41 changes: 24 additions & 17 deletions config/NuclearCraft/common.toml
Original file line number Diff line number Diff line change
@@ -1,18 +1,4 @@

[energy_generation]
#Allow rtg registration: uranium_rtg, americium_rtg, plutonium_rtg, californium_rtg
register_panel = [false, false, false, false]
#Panel power generation: du, elite, advanced, basic
panel_power = [400, 1500, 100, 25]
#rtg generation: uranium_rtg, americium_rtg, plutonium_rtg, californium_rtg
rtg_power = [20, 200, 800, 4000]
#rtg radiation: uranium_rtg, americium_rtg, plutonium_rtg, californium_rtg
rtg_radiation = [56, 57800, 200000, 1900000]
#Steam turbine (one block) base power gen
steam_turbine_power_gen = 50
#Decay Generator base power gen
decay_generator_power_gen = 100

[energy_storage]
#Allow block registration: basic_voltaic_pile, elite_voltaic_pile, advanced_voltaic_pile, basic_lithium_ion_battery, elite_lithium_ion_battery, du_lithium_ion_battery, du_voltaic_pile, advanced_lithium_ion_battery
energy_block_registration = [false, false, false, false, false, false, false, false]
Expand All @@ -24,9 +10,30 @@
ligtning_rod_charge = 1000000

[storage_blocks]
#Blocks to store items, fluids, etc...
#Allow barrel registration: advanced_barrel, basic_barrel, elite_barrel, du_barrel
energy_block_registration = [false, false, false, false]
#Barrel capacity in Buckets: advanced_barrel, basic_barrel, elite_barrel, du_barrel
barrel_capacity = [512000, 128000, 8192000, 2048000]
#Blocks to store items, fluids, etc...
#Allow container registration: advanced_barrel, basic_barrel, elite_barrel, du_barrel
container_block_registration = [true, true, true, true]
#Allow barrel registration: advanced_barrel, basic_barrel, elite_barrel, du_barrel
barrel_block_registration = [true, true, true, true]

[Energy]
#Multiplier for all power generation in the mod
#Range: 0.001 ~ 1000.0
generation_multiplier = 1.0
#Allow solar panel registration: du, elite, advanced, basic
register_panel = [true, true, true, true]
#Solar panel power generation: du, elite, advanced, basic
panel_power = [400, 1500, 100, 25]
#Allow rtg registration: uranium_rtg, americium_rtg, plutonium_rtg, californium_rtg
register_rtg = [true, true, true, true]
#rtg generation: uranium_rtg, americium_rtg, plutonium_rtg, californium_rtg
rtg_power = [100, 400, 1200, 4000]
#rtg radiation: uranium_rtg, americium_rtg, plutonium_rtg, californium_rtg
rtg_radiation = [560, 57800, 200000, 1900000]
#Steam turbine (one block) base power gen
steam_turbine_power_gen = 50
#Decay Generator base power gen
decay_generator_power_gen = 100

2 changes: 1 addition & 1 deletion config/NuclearCraft/fission.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
#Range: 0.0 ~ 1000.0
depletion_multiplier = 100.0
#Heat multiplier. Affects to all fuels.
#Range: 0.01 ~ 300.0
#Range: 0.01 ~ 100.0
fuel_heat_multiplier = 1.0

#Settings for Fission Reactor
Expand Down
Loading