Первый фикс

Пачки некоторых позиций увеличены
This commit is contained in:
2024-03-01 20:53:32 +03:00
commit 7c9c708c92
23653 changed files with 767936 additions and 0 deletions

View File

@@ -0,0 +1,29 @@
game.reload_script()
for index, force in pairs(game.forces) do
force.reset_recipes()
force.reset_technologies()
if force.technologies["nitrogen-processing"] then
if force.technologies["nitrogen-processing"].researched then
if force.recipes["ammonia"] then
force.recipes["ammonia"].enabled = true
end
if force.recipes["nitric-oxide"] then
force.recipes["nitric-oxide"].enabled = true
end
end
else
if force.technologies["chemical-plant"].researched then
if force.recipes["ammonia"] then
force.recipes["ammonia"].enabled = true
end
if force.recipes["nitric-oxide"] then
force.recipes["nitric-oxide"].enabled = true
end
if force.recipes["nitrogen-dioxide"] then
force.recipes["nitrogen-dioxide"].enabled = true
end
end
end
end

View File

@@ -0,0 +1,43 @@
game.reload_script()
for index, force in pairs(game.forces) do
force.reset_recipes()
force.reset_technologies()
if force.technologies["fluid-handling"].researched then
if force.recipes["fill-ammonia-barrel"] then
force.recipes["fill-ammonia-barrel"].enabled = true
force.recipes["empty-ammonia-barrel"].enabled = true
end
if force.recipes["fill-nitric-oxide-barrel"] then
force.recipes["fill-nitric-oxide-barrel"].enabled = true
force.recipes["empty-nitric-oxide-barrel"].enabled = true
end
if force.recipes["fill-hydrazine-barrel"] then
force.recipes["fill-hydrazine-barrel"].enabled = true
force.recipes["empty-hydrazine-barrel"].enabled = true
end
if force.recipes["fill-hydrogen-peroxide-barrel"] then
force.recipes["fill-hydrogen-peroxide-barrel"].enabled = true
force.recipes["empty-hydrogen-peroxide-barrel"].enabled = true
end
if force.recipes["fill-dinitrogen-tetroxide-barrel"] then
force.recipes["fill-dinitrogen-tetroxide-barrel"].enabled = true
force.recipes["empty-dinitrogen-tetroxide-barrel"].enabled = true
end
if force.recipes["fill-nitrogen-dioxide-barrel"] then
force.recipes["fill-nitrogen-dioxide-barrel"].enabled = true
force.recipes["empty-nitrogen-dioxide-barrel"].enabled = true
end
end
if force.recipes["enriched-fuel-from-liquid-fuel"] then
if force.technologies["chemical-processing-2"].researched then
force.recipes["enriched-fuel-from-liquid-fuel"].enabled = true
end
end
if force.recipes["enriched-fuel-from-hydrazine"] then
if force.technologies["hydrazine"].researched then
force.recipes["enriched-fuel-from-hydrazine"].enabled = true
end
end
end