From f27530cc8b099e3a2083e06502a621d9d65a4820 Mon Sep 17 00:00:00 2001 From: PreLeyZero Date: Thu, 24 Mar 2022 00:00:41 +0100 Subject: [PATCH] added recipe for ceramic --- changelog.txt | 12 ++++++++++++ info.json | 2 +- prototypes/248k_techs.lua | 4 ++++ prototypes/el_recipes.lua | 16 ++++++++++++++++ 4 files changed, 33 insertions(+), 1 deletion(-) diff --git a/changelog.txt b/changelog.txt index 0ad8e85..66c4e83 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,4 +1,16 @@ --------------------------------------------------------------------------------------------------- +Version: 1.0.2 +Date: 23.3.2022 + Features: + - added recipe for ceramic for overhaul mode +--------------------------------------------------------------------------------------------------- +Version: 1.0.1 +Date: 23.3.2022 + Features: + - updated ru locale thanks to Astorin + Bugfixes: + - fixed bug that causes a crash with the new overhaul mode +--------------------------------------------------------------------------------------------------- Version: 1.0.0 Date: 22.3.2022 Features: diff --git a/info.json b/info.json index bc4e778..d79aa38 100644 --- a/info.json +++ b/info.json @@ -1,6 +1,6 @@ { "name": "248k", - "version": "1.0.0", + "version": "1.0.2", "title": "248k Mod", "author": "PreLeyZero", "factorio_version": "1.1", diff --git a/prototypes/248k_techs.lua b/prototypes/248k_techs.lua index 600a369..71e541c 100644 --- a/prototypes/248k_techs.lua +++ b/prototypes/248k_techs.lua @@ -242,6 +242,10 @@ data:extend({ type = 'unlock-recipe', recipe = 'el_ceramic_recipe', }, + { + type = 'unlock-recipe', + recipe = 'el_ceramic_1_recipe', + }, { type = 'unlock-recipe', recipe = 'el_ALK_recipe', diff --git a/prototypes/el_recipes.lua b/prototypes/el_recipes.lua index 7789161..e968964 100644 --- a/prototypes/el_recipes.lua +++ b/prototypes/el_recipes.lua @@ -1134,6 +1134,22 @@ data:extend({ energy_required = 1, order = 'a-b', }, + { + name = 'el_ceramic_1_recipe', + type = 'recipe', + enabled = 'false', + category = 'el_arc_furnace_category', + ingredients = { + {type="fluid", name="steam", amount=100}, + {type="item", name="stone", amount=2}, + {type="item", name="coal", amount=1}, + }, + results = { + {type="item", name="el_materials_ceramic", amount=2}, + }, + energy_required = 1, + order = 'a-b', + }, { name = 'el_ALK_recipe', type = 'recipe',