forked from cacklingfiend/lignumis
Prevent getting Stuck on Nauvis
This commit is contained in:
parent
675136ee06
commit
e6a0f20feb
4 changed files with 23 additions and 42 deletions
|
|
@ -145,40 +145,20 @@ end
|
|||
|
||||
if not mods["planet-picker"] then
|
||||
local automation_science_pack_technology = data.raw.technology["automation-science-pack"]
|
||||
automation_science_pack_technology.prerequisites = { "planet-discovery-nauvis" }
|
||||
automation_science_pack_technology.enabled = false
|
||||
automation_science_pack_technology.visible_when_disabled = true
|
||||
automation_science_pack_technology.research_trigger = nil
|
||||
automation_science_pack_technology.unit = {
|
||||
count = 100,
|
||||
ingredients = {
|
||||
{ "wood-science-pack", 1 },
|
||||
{ "steam-science-pack", 1 }
|
||||
},
|
||||
time = 30
|
||||
count = 1,
|
||||
ingredients = {},
|
||||
time = 1
|
||||
}
|
||||
|
||||
local electronics_technology = data.raw.technology["electronics"]
|
||||
electronics_technology.prerequisites = { "copper-processing" }
|
||||
electronics_technology.research_trigger = nil
|
||||
electronics_technology.unit = {
|
||||
count = 50,
|
||||
ingredients = {
|
||||
{ "wood-science-pack", 1 },
|
||||
{ "steam-science-pack", 1 }
|
||||
},
|
||||
time = 15
|
||||
}
|
||||
|
||||
local steam_power_technology = data.raw.technology["steam-power"]
|
||||
steam_power_technology.prerequisites = { "iron-processing" }
|
||||
steam_power_technology.research_trigger = nil
|
||||
steam_power_technology.unit = {
|
||||
count = 50,
|
||||
ingredients = {
|
||||
{ "wood-science-pack", 1 },
|
||||
{ "steam-science-pack", 1 }
|
||||
},
|
||||
time = 15
|
||||
}
|
||||
|
||||
local automation_technology = data.raw.technology["automation"]
|
||||
automation_technology.ignore_tech_cost_multiplier = false
|
||||
|
|
@ -217,7 +197,7 @@ if not mods["planet-picker"] then
|
|||
}
|
||||
|
||||
local robots_speed_technology_3 = data.raw.technology["worker-robots-speed-3"]
|
||||
robots_speed_technology_3.prerequisites = { "worker-robots-speed-2", "chemical-science-pack" }
|
||||
robots_speed_technology_3.prerequisites = { "robotics", "chemical-science-pack" }
|
||||
robots_speed_technology_3.unit = {
|
||||
count = 150,
|
||||
ingredients = { { "automation-science-pack", 1 }, { "logistic-science-pack", 1 }, { "chemical-science-pack", 1 } },
|
||||
|
|
@ -260,7 +240,7 @@ if not mods["planet-picker"] then
|
|||
weapon_speed_technology_2.unit.ingredients = table.deepcopy(physical_damage_technology_2.unit.ingredients)
|
||||
|
||||
local physical_damage_technology_3 = data.raw.technology["physical-projectile-damage-3"]
|
||||
physical_damage_technology_3.prerequisites = { "physical-projectile-damage-2", "logistic-science-pack" }
|
||||
physical_damage_technology_3.prerequisites = { "military-2", "logistic-science-pack" }
|
||||
physical_damage_technology_3.unit.ingredients = { { "automation-science-pack", 1 }, { "logistic-science-pack", 1 } }
|
||||
table.insert(physical_damage_technology_3.effects, {
|
||||
type = "turret-attack",
|
||||
|
|
@ -269,7 +249,7 @@ if not mods["planet-picker"] then
|
|||
})
|
||||
|
||||
local weapon_speed_technology_3 = data.raw.technology["weapon-shooting-speed-3"]
|
||||
weapon_speed_technology_3.prerequisites = { "weapon-shooting-speed-2", "logistic-science-pack" }
|
||||
weapon_speed_technology_3.prerequisites = { "military-2", "logistic-science-pack" }
|
||||
weapon_speed_technology_3.unit.ingredients = table.deepcopy(physical_damage_technology_3.unit.ingredients)
|
||||
|
||||
local physical_damage_technology_4 = data.raw.technology["physical-projectile-damage-4"]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue