Skip to content

Commit

Permalink
(Advanced) Gas Refinery Crafting Category #988
Browse files Browse the repository at this point in the history
  • Loading branch information
KiwiHawk committed May 26, 2024
1 parent aeab1c6 commit 0e189bc
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 8 deletions.
5 changes: 5 additions & 0 deletions angelspetrochem/changelog.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
---------------------------------------------------------------------------------------------------
Version: 0.9.27
Date: ???
Changes:
- Added separate crafting categories for Gas Refinery and Advanced Gas Refinery (988)
---------------------------------------------------------------------------------------------------
Version: 0.9.26
Date: 21.02.2024
Changes:
Expand Down
2 changes: 1 addition & 1 deletion angelspetrochem/info.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "angelspetrochem",
"version": "0.9.26",
"version": "0.9.27",
"factorio_version": "1.1",
"title": "Angel's Petrochemical Processing",
"author": "Arch666Angel",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ data:extend({
module_slots = 2,
},
allowed_effects = { "consumption", "speed", "productivity", "pollution" },
crafting_categories = { "gas-refining" },
crafting_categories = { "advanced-gas-refining" },
crafting_speed = 1,
energy_source = {
type = "electric",
Expand Down Expand Up @@ -547,7 +547,7 @@ data:extend({
module_slots = 2,
},
allowed_effects = { "consumption", "speed", "productivity", "pollution" },
crafting_categories = { "gas-refining" },
crafting_categories = { "advanced-gas-refining" },
crafting_speed = 1.5,
energy_source = {
type = "electric",
Expand Down Expand Up @@ -1055,7 +1055,7 @@ data:extend({
module_slots = 2,
},
allowed_effects = { "consumption", "speed", "productivity", "pollution" },
crafting_categories = { "gas-refining" },
crafting_categories = { "advanced-gas-refining" },
crafting_speed = 2,
energy_source = {
type = "electric",
Expand Down Expand Up @@ -1562,7 +1562,7 @@ data:extend({
module_slots = 2,
},
allowed_effects = { "consumption", "speed", "productivity", "pollution" },
crafting_categories = { "gas-refining" },
crafting_categories = { "advanced-gas-refining" },
crafting_speed = 2.5,
energy_source = {
type = "electric",
Expand Down
4 changes: 4 additions & 0 deletions angelspetrochem/prototypes/petrochem-category.lua
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ data:extend({
type = "recipe-category",
name = "gas-refining",
},
{
type = "recipe-category",
name = "advanced-gas-refining",
},
{
type = "recipe-category",
name = "steam-cracking",
Expand Down
6 changes: 3 additions & 3 deletions angelspetrochem/prototypes/recipes/petrochem-carbons.lua
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ data:extend({
{
type = "recipe",
name = "gas-fractioning-synthesis",
category = "gas-refining",
category = "advanced-gas-refining",
subgroup = "petrochem-carbon-gas-feed",
energy_required = 6,
enabled = false,
Expand Down Expand Up @@ -124,7 +124,7 @@ data:extend({
{
type = "recipe",
name = "gas-fractioning-condensates",
category = "gas-refining",
category = "advanced-gas-refining",
subgroup = "petrochem-carbon-gas-feed",
energy_required = 6,
enabled = false,
Expand Down Expand Up @@ -156,7 +156,7 @@ data:extend({
{
type = "recipe",
name = "gas-fractioning-residual",
category = "gas-refining",
category = "advanced-gas-refining",
subgroup = "petrochem-carbon-gas-feed",
energy_required = 6,
enabled = false,
Expand Down

0 comments on commit 0e189bc

Please sign in to comment.