diff --git a/PHI-CL/data/b/gm-vp-c.lua b/PHI-CL/data/b/gm-vp-c.lua index 9ce8769..21e7efe 100644 --- a/PHI-CL/data/b/gm-vp-c.lua +++ b/PHI-CL/data/b/gm-vp-c.lua @@ -55,9 +55,11 @@ local items = { 'furnace', 'thruster', 'lab', + -- 2X + 'cargo-bay', + -- SPACE_AGE 15 -- 3X 'plant', - -- SPACE_AGE 15 }, ['recipe_reform'] = { -- BASE 0 @@ -99,6 +101,22 @@ local items = { ['transport-belt'] = { categories = {'crafting'}, }, + ['fast-transport-belt'] = { + categories = {'crafting'}, + }, + ['underground-belt'] = { + categories = {'crafting'}, + }, + ['fast-underground-belt'] = { + categories = {'crafting'}, + }, + -- BASE 15 + ['splitter'] = { + categories = {'crafting'}, + }, + ['fast-splitter'] = { + categories = {'crafting'}, + }, -- SPACE_AGE 0 ['agricultural-tower'] = { ingredients = {{type = 'item', name = 'steel-plate', amount = 20}, {type = 'item', name = 'electronic-circuit', amount = 10}, {type = 'item', name = 'landfill', amount = 4}} @@ -1080,6 +1098,10 @@ local items = { prerequisites = {'quantum-processor'}, unit = {count = 1000, time = 60, ingredients = {{'automation-science-pack', 1}, {'logistic-science-pack', 1}, {'chemical-science-pack', 1}, {'production-science-pack', 1}, {'utility-science-pack', 1}, {'agricultural-science-pack', 1}, {'electromagnetic-science-pack', 1}, {'metallurgic-science-pack', 1}, {'cryogenic-science-pack', 1}}}, }, + ['landing-pad-unloading-bay'] = { + prerequisites = {'rocket-silo'}, + unit = {count = 800, time = 60, ingredients = {{'automation-science-pack', 1}, {'logistic-science-pack', 1}, {'chemical-science-pack', 1}, {'production-science-pack', 1}, {'utility-science-pack', 1}}}, + }, }, ['technology'] = { -- SPACE_AGE 0 @@ -1117,6 +1139,8 @@ local items = { ['tungsten-steel'] = true, ['holmium-processing'] = true, ['lithium-processing'] = true, + ['stellar-discovery-solar-system-edge'] = true, + -- SPACE_AGE 30 }, } diff --git a/PHI-CL/data/b/gm-vp.lua b/PHI-CL/data/b/gm-vp.lua index 1e7afef..8055119 100644 --- a/PHI-CL/data/b/gm-vp.lua +++ b/PHI-CL/data/b/gm-vp.lua @@ -8,7 +8,7 @@ mc.space_age() -- GM-VP C 31 BASE ENTITY -- GM-VP C 6 ELEVATED_RAILS ENTITY --- GM-VP C 17 SPACE_AGE ENTITY +-- GM-VP C 19 SPACE_AGE ENTITY if items['entity_surface_conditions'] then for _, v in pairs(items['entity_surface_conditions']) do if data.raw[v] then @@ -394,7 +394,7 @@ if data.raw['lab'] then end -- GM-VP C 26 BASE RESEARCH --- GM-VP C 38 SPACE_AGE RESEARCH +-- GM-VP C 39 SPACE_AGE RESEARCH -- GM-VP H 29 SPACE_AGE RESEARCH if data.raw.technology and items['technology'] and items['technology_reform'] then for _, v in pairs(data.raw.technology) do @@ -452,7 +452,7 @@ for _, v in pairs(data.raw.item) do end end --- GM-VP C 12 BASE RECIPE +-- GM-VP C 17 BASE RECIPE -- GM-VP C 61 SPACE_AGE RECIPE -- GM-VP H 1 QUALITY RECIPE -- GM-VP H 54 SPACE_AGE RECIPE diff --git a/PHI-CL/data/b/gm.lua b/PHI-CL/data/b/gm.lua index f3cee3e..8f7b500 100644 --- a/PHI-CL/data/b/gm.lua +++ b/PHI-CL/data/b/gm.lua @@ -4,6 +4,11 @@ if data.raw['cargo-bay'] and data.raw['cargo-bay']['cargo-bay'] then data.raw['cargo-bay']['cargo-bay'].inventory_size_bonus = math.max(40, data.raw['cargo-bay']['cargo-bay'].inventory_size_bonus or 0) end +-- GM C 1 SPACE_AGE ENTITY +if data.raw['cargo-bay'] and data.raw['cargo-bay']['landing-pad-unloading-bay'] then + data.raw['cargo-bay']['landing-pad-unloading-bay'].inventory_size_bonus = math.max(40, data.raw['cargo-bay']['landing-pad-unloading-bay'].inventory_size_bonus or 0) +end + -- GM C 1 BASE ENTITY if data.raw['rocket-silo'] and data.raw['rocket-silo']['rocket-silo'] then data.raw['rocket-silo']['rocket-silo'].to_be_inserted_to_rocket_inventory_size = math.max(60, data.raw['rocket-silo']['rocket-silo'].to_be_inserted_to_rocket_inventory_size or 0)