diff --git a/changelog.txt b/changelog.txt index 6b597c2..55a3a51 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,4 +1,9 @@ --------------------------------------------------------------------------------------------------- +Version: 1.0.16 +Date: 26.4.2022 + Changes: + - reduced cermic steam cost even more + fix for krastorio +--------------------------------------------------------------------------------------------------- Version: 1.0.15 Date: 26.4.2022 Changes: diff --git a/prototypes/el_recipes.lua b/prototypes/el_recipes.lua index ef1ca0d..f9c1554 100644 --- a/prototypes/el_recipes.lua +++ b/prototypes/el_recipes.lua @@ -1137,7 +1137,7 @@ data:extend({ enabled = 'false', category = 'crafting-with-fluid', ingredients = { - {type="fluid", name="steam", amount=60}, + {type="fluid", name="steam", amount=30}, {type="item", name="stone", amount=2}, }, results = { diff --git a/scripts/krastorio2/data-final-fixes.lua b/scripts/krastorio2/data-final-fixes.lua index a94307a..05276ac 100644 --- a/scripts/krastorio2/data-final-fixes.lua +++ b/scripts/krastorio2/data-final-fixes.lua @@ -235,6 +235,21 @@ data:extend({ }, energy_required = 2, }, + { + name = 'el_ceramic_recipe', + type = 'recipe', + enabled = 'false', + category = 'crafting-with-fluid', + ingredients = { + {type="fluid", name="steam", amount=10}, + {type="item", name="stone", amount=2}, + }, + results = { + {type="item", name="el_materials_ceramic", amount=1}, + }, + energy_required = 1, + order = 'a-b', + }, }) --techs diff --git a/scripts/overhaul.lua b/scripts/overhaul.lua index 8885f37..b8dea7c 100644 --- a/scripts/overhaul.lua +++ b/scripts/overhaul.lua @@ -97,7 +97,7 @@ building_table = { --[ITEMS] item_table = { - {"advanced-circuit", "el_materials_ceramic", 5}, + {"advanced-circuit", "el_materials_ceramic", 2}, {"processing-unit", "fi_materials_gold", 3}, {"electric-engine-unit", "fi_materials_gold", 3}, {"flying-robot-frame", "fi_materials_neodym", 6},