This commit is contained in:
2026-05-07 20:22:33 +09:00
parent 5e6be4b384
commit e71d1b64a9
2 changed files with 16 additions and 3 deletions
+5
View File
@@ -435,6 +435,11 @@ local items = {
ingredients = {{type = 'item', name = 'steel-plate', amount = 60}, {type = 'item', name = 'processing-unit', amount = 40}, {type = 'item', name = 'coal', amount = 60}, {type = 'item', name = 'refined-concrete', amount = 40}, {type = 'item', name = 'electric-furnace', amount = 1}, {type = 'fluid', name = 'lubricant', amount = 60}} ingredients = {{type = 'item', name = 'steel-plate', amount = 60}, {type = 'item', name = 'processing-unit', amount = 40}, {type = 'item', name = 'coal', amount = 60}, {type = 'item', name = 'refined-concrete', amount = 40}, {type = 'item', name = 'electric-furnace', amount = 1}, {type = 'fluid', name = 'lubricant', amount = 60}}
} }
}, },
['tips_and_tricks_item'] = {
-- SPACE_AGE 0
'agriculture',
'lava-processing'
},
['technology'] = { ['technology'] = {
['planet-discovery-vulcanus'] = true, ['planet-discovery-vulcanus'] = true,
['planet-discovery-gleba'] = true, ['planet-discovery-gleba'] = true,
+11 -3
View File
@@ -245,6 +245,17 @@ if items['recipe_reform'] then
end end
end end
-- GM-VP C 2 SPACE_AGE TIP_AND_TRICK
-- TODO nil
if items['tips_and_tricks_item'] then
for _, v in pairs(items['tips_and_tricks_item']) do
if data.raw['tips-and-tricks-item'][v] then
data.raw['tips-and-tricks-item'][v].hidden = true
data.raw['tips-and-tricks-item'][v].hidden_in_factoriopedia = true
end
end
end
-- GM-VP C 2 BASE ENTITY -- GM-VP C 2 BASE ENTITY
if data.raw['unit-spawner'] then if data.raw['unit-spawner'] then
if data.raw['unit-spawner']['biter-spawner'] then if data.raw['unit-spawner']['biter-spawner'] then
@@ -461,9 +472,6 @@ end
data.raw.ammo['capture-robot-rocket'].hidden = true data.raw.ammo['capture-robot-rocket'].hidden = true
data.raw.ammo['capture-robot-rocket'].hidden_in_factoriopedia = true data.raw.ammo['capture-robot-rocket'].hidden_in_factoriopedia = true
data.raw['tips-and-tricks-item']['agriculture'] = nil
data.raw['tips-and-tricks-item']['lava-processing'] = nil
for _, v in pairs({'research-with-metallurgics', 'research-with-agriculture', 'research-with-electromagnetics', 'research-with-cryogenics', 'research-with-promethium'}) do for _, v in pairs({'research-with-metallurgics', 'research-with-agriculture', 'research-with-electromagnetics', 'research-with-cryogenics', 'research-with-promethium'}) do
data.raw['research-with-science-pack-achievement'][v] = nil data.raw['research-with-science-pack-achievement'][v] = nil
end end