diff --git a/PHI-CL/changelog.txt b/PHI-CL/changelog.txt index abe1fe5..8244538 100644 --- a/PHI-CL/changelog.txt +++ b/PHI-CL/changelog.txt @@ -1,3 +1,10 @@ +--------------------------------------------------------------------------------------------------- +Version: 3.0.122 +Date: 2025-06-29 + + Changes: + - [GM] Added oil processing productivity in VP. + --------------------------------------------------------------------------------------------------- Version: 3.0.121 Date: 2025-06-29 diff --git a/PHI-CL/data.lua b/PHI-CL/data.lua index ccce7ff..e13efbd 100644 --- a/PHI-CL/data.lua +++ b/PHI-CL/data.lua @@ -1228,7 +1228,7 @@ if settings.startup['PHI-GM'].value and settings.startup['PHI-GM'].value == 'VP' data.raw['tool']['space-science-pack'].rocket_launch_products = {{type = 'item', name = 'raw-fish', amount = 1}} data.raw['tool']['space-science-pack'].send_to_orbit_mode = 'automated' - for _, v in pairs({'concrete', 'automation', 'electronics', 'advanced-circuit', 'engine', 'sulfur-processing', 'solar-energy', 'railway'}) do + for _, v in pairs({'concrete', 'automation', 'electronics', 'advanced-circuit', 'engine', 'sulfur-processing', 'solar-energy', 'railway', 'oil-processing'}) do data:extend({{ type = 'technology', name = v .. '-productivity', @@ -1255,6 +1255,11 @@ if settings.startup['PHI-GM'].value and settings.startup['PHI-GM'].value == 'VP' table.insert(data.raw.technology['solar-energy-productivity'].effects, {type = 'change-recipe-productivity', recipe = 'battery', change = 0.05}) table.insert(data.raw.technology['engine-productivity'].effects, {type = 'change-recipe-productivity', recipe = 'electric-engine-unit', change = 0.05}) table.insert(data.raw.technology['engine-productivity'].effects, {type = 'change-recipe-productivity', recipe = 'flying-robot-frame', change = 0.05}) + data.raw.technology['oil-processing-productivity'].effects[1].recipe = 'basic-oil-processing' + table.insert(data.raw.technology['oil-processing-productivity'].effects, {type = 'change-recipe-productivity', recipe = 'advanced-oil-processing', change = 0.05}) + table.insert(data.raw.technology['oil-processing-productivity'].effects, {type = 'change-recipe-productivity', recipe = 'solid-fuel-from-petroleum-gas', change = 0.05}) + table.insert(data.raw.technology['oil-processing-productivity'].effects, {type = 'change-recipe-productivity', recipe = 'solid-fuel-from-heavy-oil', change = 0.05}) + table.insert(data.raw.technology['oil-processing-productivity'].effects, {type = 'change-recipe-productivity', recipe = 'solid-fuel-from-light-oil', change = 0.05}) data.raw.technology['engine-productivity'].effects[1].recipe = 'engine-unit' data.raw.technology['sulfur-processing-productivity'].prerequisites = {'cryogenic-plant'} data.raw.technology['sulfur-processing-productivity'].effects[1].recipe = 'sulfur' diff --git a/PHI-CL/info.json b/PHI-CL/info.json index 8f53568..f8c8f31 100644 --- a/PHI-CL/info.json +++ b/PHI-CL/info.json @@ -1,6 +1,6 @@ { "name": "PHI-CL", - "version": "3.0.121", + "version": "3.0.122", "factorio_version": "2.0", "date": "2025-06-29", "title": "Phidias Collection",