From c716b99bd51e481ecce089ff905778d9213f69da Mon Sep 17 00:00:00 2001 From: PreLeyZero Date: Fri, 13 May 2022 11:01:28 +0200 Subject: [PATCH] 0.21 balance changes --- changelog.txt | 15 +++++ prototypes/248k_techs.lua | 4 ++ prototypes/electronic/el_diesel_train.lua | 6 +- prototypes/electronic/el_energy_crystal.lua | 2 +- prototypes/electronic/el_pressurizer.lua | 2 +- prototypes/electronic/el_train_fuel.lua | 4 +- prototypes/electronic/el_water_generator.lua | 2 +- prototypes/fission/fi_energy_crystal.lua | 2 +- prototypes/fission/fi_fuel.lua | 2 +- prototypes/fusion/fu_materials.lua | 4 +- prototypes/fusion/fu_reactor.lua | 68 +++++++++++--------- prototypes/gr_recipes.lua | 25 +++++-- 12 files changed, 88 insertions(+), 48 deletions(-) diff --git a/changelog.txt b/changelog.txt index a417c91..f09e313 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,3 +1,18 @@ +--------------------------------------------------------------------------------------------------- +Version: 1.0.21 +Date: 13.5.2022 + Features: + - added a better ceramic recipe in fission stage + - added descriptions to a lot of machines/items + + Changes: + - all building icons are now brighter + - lowerd volume of some machines + - made combined matter cheaper + - reduced stack sizes of energy crystals and diesel fuels + - increased stack size of neutron canisters + - adjusted fusion reactor fluid inputs + --------------------------------------------------------------------------------------------------- Version: 1.0.20 Date: 07.5.2022 diff --git a/prototypes/248k_techs.lua b/prototypes/248k_techs.lua index 02b49e3..32bdd25 100644 --- a/prototypes/248k_techs.lua +++ b/prototypes/248k_techs.lua @@ -3052,6 +3052,10 @@ data:extend({ { type = 'unlock-recipe', recipe = 'gr_kovarex_recipe', + }, + { + type = 'unlock-recipe', + recipe = 'gr_kovarex_2_recipe', } }, unit = { diff --git a/prototypes/electronic/el_diesel_train.lua b/prototypes/electronic/el_diesel_train.lua index 91336bb..f24ebd5 100644 --- a/prototypes/electronic/el_diesel_train.lua +++ b/prototypes/electronic/el_diesel_train.lua @@ -167,18 +167,18 @@ data:extend({ sound = { { filename = "__base__/sound/train-breaks.ogg", - volume = 0.6, + volume = 0.2, } }, }, }, working_sound = { sound = { filename ='__base__/sound/train-engine.ogg'}, - apparent_volume = 0.5, + apparent_volume = 0.2, }, vehicle_impact_sound = { filename = "__base__/sound/car-metal-impact-6.ogg", - volume = 0.8 + volume = 0.3 }, }, diff --git a/prototypes/electronic/el_energy_crystal.lua b/prototypes/electronic/el_energy_crystal.lua index 27bed9a..ec06472 100644 --- a/prototypes/electronic/el_energy_crystal.lua +++ b/prototypes/electronic/el_energy_crystal.lua @@ -14,7 +14,7 @@ data:extend({ type = 'item', icon = sprite('item.png'), icon_size = 64, - stack_size = 500, + stack_size = 100, subgroup = 'el_item_subgroup_a', order = 'a-c', fuel_glow_color = {r=0.1,g=0.74,b=0.39,a=0.5}, diff --git a/prototypes/electronic/el_pressurizer.lua b/prototypes/electronic/el_pressurizer.lua index 1ca8d3d..37e5708 100644 --- a/prototypes/electronic/el_pressurizer.lua +++ b/prototypes/electronic/el_pressurizer.lua @@ -144,7 +144,7 @@ data:extend({ working_sound = { sound = {filename = "__base__/sound/chemical-plant-3.ogg" }, - apparent_volume = 0.1, + apparent_volume = 0.05, }, }, }) diff --git a/prototypes/electronic/el_train_fuel.lua b/prototypes/electronic/el_train_fuel.lua index 4867267..fe0bef2 100644 --- a/prototypes/electronic/el_train_fuel.lua +++ b/prototypes/electronic/el_train_fuel.lua @@ -14,7 +14,7 @@ data:extend({ type = 'item', icon = sprite('diesel_item.png'), icon_size = 64, - stack_size = 100, + stack_size = 50, subgroup = 'el_item_subgroup_d', order = 'b-a', fuel_acceleration_multiplier = 1, @@ -28,7 +28,7 @@ data:extend({ type = 'item', icon = sprite('diesel_energized_item.png'), icon_size = 64, - stack_size = 100, + stack_size = 50, subgroup = 'el_item_subgroup_d', order = 'b-b', fuel_acceleration_multiplier = 0.55, diff --git a/prototypes/electronic/el_water_generator.lua b/prototypes/electronic/el_water_generator.lua index bde11a9..46b1d53 100644 --- a/prototypes/electronic/el_water_generator.lua +++ b/prototypes/electronic/el_water_generator.lua @@ -105,7 +105,7 @@ data:extend({ }, working_sound = { sound = { filename ='__base__/sound/pipe.ogg'}, - apparent_volume = 0.3, + apparent_volume = 0.1, }, }, }) \ No newline at end of file diff --git a/prototypes/fission/fi_energy_crystal.lua b/prototypes/fission/fi_energy_crystal.lua index dadc98e..caee42e 100644 --- a/prototypes/fission/fi_energy_crystal.lua +++ b/prototypes/fission/fi_energy_crystal.lua @@ -14,7 +14,7 @@ data:extend({ type = 'item', icon = sprite('item.png'), icon_size = 64, - stack_size = 500, + stack_size = 100, subgroup = 'fi_item_subgroup_b', order = 'a-c', fuel_glow_color = {r=0.1,g=0.74,b=0.39,a=0.5}, diff --git a/prototypes/fission/fi_fuel.lua b/prototypes/fission/fi_fuel.lua index 009d8f6..26dfb0e 100644 --- a/prototypes/fission/fi_fuel.lua +++ b/prototypes/fission/fi_fuel.lua @@ -165,7 +165,7 @@ data:extend({ type = 'item', icon = sprite('train_crystal_item.png'), icon_size = 64, - stack_size = 100, + stack_size = 20, subgroup = 'fi_item_subgroup_d', order = 'd-a', fuel_acceleration_multiplier = 0.6, diff --git a/prototypes/fusion/fu_materials.lua b/prototypes/fusion/fu_materials.lua index b4888e1..07c85ab 100644 --- a/prototypes/fusion/fu_materials.lua +++ b/prototypes/fusion/fu_materials.lua @@ -135,7 +135,7 @@ data:extend({ type = 'item', icon = sprite('empty_container.png'), icon_size = 64, - stack_size = 1, + stack_size = 5, subgroup = 'fu_item_subgroup_b', order = 'f-a', }, @@ -144,7 +144,7 @@ data:extend({ type = 'item', icon = sprite('charged_container.png'), icon_size = 64, - stack_size = 1, + stack_size = 5, subgroup = 'fu_item_subgroup_b', order = 'f-a', }, diff --git a/prototypes/fusion/fu_reactor.lua b/prototypes/fusion/fu_reactor.lua index 0c926a5..1974a72 100644 --- a/prototypes/fusion/fu_reactor.lua +++ b/prototypes/fusion/fu_reactor.lua @@ -60,6 +60,19 @@ data:extend({ energy_usage = '400MW', --fluid fluid_boxes = { + { + filter = "fu_lead_fluid_cold", + base_area = 1, + height = 2, + base_level = -1, + pipe_covers = pipecoverspictures(), + pipe_picture = grey_south_pipe_picture, + pipe_connections = + { + {type = "input", position = {2, 7}} + }, + production_type = "input" + }, { base_area = 1, height = 2, @@ -68,7 +81,7 @@ data:extend({ pipe_picture = grey_south_pipe_picture, pipe_connections = { - {type = "input", position = {-1, -7}}, + {type = "input", position = {-2, -7}}, }, production_type = "input" }, @@ -80,23 +93,12 @@ data:extend({ pipe_picture = grey_south_pipe_picture, pipe_connections = { - {type = "input", position = {1, -7}} - }, - production_type = "input" - }, - { - base_area = 1, - height = 2, - base_level = -1, - pipe_covers = pipecoverspictures(), - pipe_picture = grey_south_pipe_picture, - pipe_connections = - { - {type = "input", position = {3, -7}} + {type = "input", position = {2, -7}} }, production_type = "input" }, { + filter = "fu_lead_fluid_hot", base_area = 1, height = 2, base_level = 1, @@ -104,10 +106,10 @@ data:extend({ pipe_picture = grey_south_pipe_picture, pipe_connections = { - {type = "output", position = {-3, -7}} + {type = "output", position = {-2, 7}} }, production_type = "output" - }, + } }, --animation animation = { @@ -173,6 +175,19 @@ data:extend({ energy_usage = '400MW', --fluid fluid_boxes = { + { + filter = "fu_lead_fluid_cold", + base_area = 1, + height = 2, + base_level = -1, + pipe_covers = pipecoverspictures(), + pipe_picture = grey_south_pipe_picture, + pipe_connections = + { + {type = "input", position = {2, 7}} + }, + production_type = "input" + }, { base_area = 1, height = 2, @@ -181,7 +196,7 @@ data:extend({ pipe_picture = grey_south_pipe_picture, pipe_connections = { - {type = "input", position = {-1, -7}}, + {type = "input", position = {-2, -7}}, }, production_type = "input" }, @@ -193,23 +208,12 @@ data:extend({ pipe_picture = grey_south_pipe_picture, pipe_connections = { - {type = "input", position = {1, -7}} - }, - production_type = "input" - }, - { - base_area = 1, - height = 2, - base_level = -1, - pipe_covers = pipecoverspictures(), - pipe_picture = grey_south_pipe_picture, - pipe_connections = - { - {type = "input", position = {3, -7}} + {type = "input", position = {2, -7}} }, production_type = "input" }, { + filter = "fu_lead_fluid_hot", base_area = 1, height = 2, base_level = 1, @@ -217,10 +221,10 @@ data:extend({ pipe_picture = grey_south_pipe_picture, pipe_connections = { - {type = "output", position = {-3, -7}} + {type = "output", position = {-2, 7}} }, production_type = "output" - }, + } }, animation = { filename = sprite('tokamak_entity_animation.png'), diff --git a/prototypes/gr_recipes.lua b/prototypes/gr_recipes.lua index 052d6ea..ccc7cc1 100644 --- a/prototypes/gr_recipes.lua +++ b/prototypes/gr_recipes.lua @@ -34,9 +34,9 @@ data:extend({ type = 'recipe', enabled = 'false', ingredients = { - {'fu_space_probe_down_matter_item',3}, + {'fu_space_probe_down_matter_item',2}, {'low-density-structure',10}, - {'fu_space_probe_data_card_3_item',2}, + {'fu_space_probe_data_card_3_item',1}, }, result = 'gr_materials_stack_down_item', result_count = 1, @@ -47,9 +47,9 @@ data:extend({ type = 'recipe', enabled = 'false', ingredients = { - {'fu_space_probe_up_matter_item',3}, + {'fu_space_probe_up_matter_item',2}, {'low-density-structure',10}, - {'fu_space_probe_data_card_3_item',2}, + {'fu_space_probe_data_card_3_item',1}, }, result = 'gr_materials_stack_up_item', result_count = 1, @@ -206,6 +206,23 @@ data:extend({ energy_required = 100, always_show_made_in = true }, + { + name = 'gr_kovarex_2_recipe', + type = 'recipe', + category = 'centrifuging', + enabled = 'false', + main_product = 'fu_space_probe_down_matter_item', + ingredients = { + {type="item", name="fu_space_probe_up_matter_item", amount=10} + }, + results = { + {type="item", name="fu_space_probe_up_matter_item", amount=9}, + {type="item", name="fu_space_probe_down_matter_item", amount=1} + }, + result_count = 1, + energy_required = 100, + always_show_made_in = true + }, --charger { name = 'gr_charger_recipe',