diff --git a/locale/en/lang_en.cfg b/locale/en/lang_en.cfg index 12306a0..01e0228 100644 --- a/locale/en/lang_en.cfg +++ b/locale/en/lang_en.cfg @@ -566,7 +566,7 @@ el_ki_core_energy_usage=KI1 core power usage el_ki_core_energy_usage_input=KI1 core power input maximum el_ki_core_productivity=Enable [color=orange]productivity [/color]modules in KI core and amplifier el_burner_kerosene_power_output=Kerosene generator power output -override_krastorio_endgame=Adjust Krastorio2 recipes for Anti-matter reactor, Intergalactic transreciever. +override_krastorio_endgame=Make Krastorio2 endgame harder. overhaul_mode=Enable [color=#880fb4]Overaul [/color]mode. overhaul_realistic_reactors=Integrate Realistic Reactors in 248k. @@ -583,6 +583,7 @@ el_ki_core_energy_usage_input_3=KI3 core power input maximum el_ki_core_productivity=Allows to achieve very high productivity values in f.e. crafting machines, so use with caution. overhaul_mode=Overaul vanilla/Krastorio2 by inserting 248k in progression, aswell as in techs and recipes. \n[color=red]NOTE: When 248k is added in already existing save this may cause problems. For best gameplay use this on new world.[/color] overhaul_realistic_reactors=248ks nuclear reactor will become a research reactor to guide towards the realistic reactors. \nNuclear Fuel and other are integrated in 248k progression.[color=red] Only possible in Overaul mode.[/color] +override_krastorio_endgame=Adjust Krastorio2 recipes for Anti-matter reactor, Intergalactic transreciever to require late game items of 248k. Intergalactic transceiver will require 1 [color=purple]248k element[/color]. [item-limitation] diff --git a/scripts/krastorio2/data-final-fixes.lua b/scripts/krastorio2/data-final-fixes.lua index 873fa40..8f7cbf6 100644 --- a/scripts/krastorio2/data-final-fixes.lua +++ b/scripts/krastorio2/data-final-fixes.lua @@ -363,7 +363,8 @@ table.insert(data.raw["generator-equipment"]["fi_train_equipment_generator_item" if (config("krastorio_endgame")) then table.insert(data.raw.recipe["kr-intergalactic-transceiver"].ingredients ,{type="item", name="gr_materials_stack_down_item", amount=40}) - table.insert(data.raw.recipe["kr-intergalactic-transceiver"].ingredients ,{type="item", name="gr_materials_stack_up_item", amount=40}) + table.insert(data.raw.recipe["kr-intergalactic-transceiver"].ingredients ,{type="item", name="gr_materials_stack_up_item", amount=40}) + table.insert(data.raw.recipe["kr-intergalactic-transceiver"].ingredients ,{type="item", name="gr_materials_white_item", amount=1}) table.insert(data.raw.recipe["kr-antimatter-reactor"].ingredients ,{type="item", name="gr_materials_stack_down_item", amount=5}) table.insert(data.raw.recipe["kr-antimatter-reactor"].ingredients ,{type="item", name="gr_materials_stack_up_item", amount=5}) end