From d9129494888f2620412dee9e5ccb26e06adebe78 Mon Sep 17 00:00:00 2001 From: Brevven Date: Thu, 29 Dec 2022 17:46:41 -0800 Subject: [PATCH] fluid recipes --- changelog.txt | 7 ++++++- info.json | 2 +- prototypes/chlorine.lua | 4 ++++ prototypes/epoxy.lua | 1 + 4 files changed, 12 insertions(+), 2 deletions(-) diff --git a/changelog.txt b/changelog.txt index 5743bcc..fe73d6d 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,8 +1,13 @@ --------------------------------------------------------------------------------------------------- +Version: 0.0.8 +Date: 2022-12-29 + Changes: + - Move several recipes into "fluid-recipes" subgroup, so they show up in standard place in GUI. +--------------------------------------------------------------------------------------------------- Version: 0.0.7 Date: 2022-12-28 Changes: - - K2: PCBs used for advanced circuits instead of electronic components. + - K2: PCBs used for advanced circuits instead of electronic components - Less copper required for PCBs --------------------------------------------------------------------------------------------------- Version: 0.0.6 diff --git a/info.json b/info.json index 17607b3..0fe7c85 100644 --- a/info.json +++ b/info.json @@ -1,6 +1,6 @@ { "name": "bzchlorine", - "version": "0.0.7", + "version": "0.0.8", "factorio_version": "1.1", "title": "Salt & Chlorine", "author": "Brevven", diff --git a/prototypes/chlorine.lua b/prototypes/chlorine.lua index dcf704d..6c7632c 100644 --- a/prototypes/chlorine.lua +++ b/prototypes/chlorine.lua @@ -61,6 +61,7 @@ data:extend({ ingredients = {{"salt", 2}}, enabled = false, category = "chemistry", + subgroup = "fluid-recipes", energy_required = 0.5, }, { @@ -73,6 +74,7 @@ data:extend({ }, enabled = false, category = "chemistry", + subgroup = "fluid-recipes", energy_required = 10, }, }) @@ -91,6 +93,7 @@ data:extend({ }, enabled = false, category = "chemistry", + subgroup = "fluid-recipes", energy_required = 1, }, }) @@ -135,6 +138,7 @@ data:extend({ }, enabled = false, category = "chemistry", + subgroup = "fluid-recipes", energy_required = 3, }, }) diff --git a/prototypes/epoxy.lua b/prototypes/epoxy.lua index 1d3c765..64ba8a6 100644 --- a/prototypes/epoxy.lua +++ b/prototypes/epoxy.lua @@ -29,6 +29,7 @@ data:extend({ }, enabled = false, category = "chemistry", + subgroup = "fluid-recipes", energy_required = 3, }, })