diff --git a/PHI-CL/config.lua b/PHI-CL/config.lua index 4cbf067..9f8ff8b 100644 --- a/PHI-CL/config.lua +++ b/PHI-CL/config.lua @@ -403,6 +403,11 @@ local items = { ['prerequisites'] = {'logistic-robotics', 'utility-science-pack'}, ['unit'] = {count = 500, time = 30, ingredients = {{'automation-science-pack', 1}, {'logistic-science-pack', 1}, {'chemical-science-pack', 1}, {'utility-science-pack', 1}}} }, + ['cliff-explosives'] = { + ['prerequisites'] = {'explosives', 'military-2'}, + ['unit'] = {count = 200, time = 15, ingredients = {{'automation-science-pack', 1}, {'logistic-science-pack', 1}}}, + ['effects'] = {{type = 'unlock-recipe', recipe = 'cliff-explosives'}, {type = 'cliff-deconstruction-enabled', modifier = true}} + }, }, ['technology'] = { ['planet-discovery-vulcanus'] = true, diff --git a/PHI-CL/data.lua b/PHI-CL/data.lua index 68307af..ad0c298 100644 --- a/PHI-CL/data.lua +++ b/PHI-CL/data.lua @@ -911,10 +911,6 @@ if settings.startup['PHI-VP'].value then end end - data.raw.technology['cliff-explosives'].prerequisites = {'explosives', 'military-2'} - data.raw.technology['cliff-explosives'].unit = {count = 200, time = 30, ingredients = {{'automation-science-pack', 1}, {'logistic-science-pack', 1}}} - data.raw.technology['cliff-explosives'].effects = {{type = 'unlock-recipe', recipe = 'cliff-explosives'}, {type = 'cliff-deconstruction-enabled', modifier = true}} - data.raw.technology['space-science-pack'].research_trigger = nil data.raw.technology['space-science-pack'].prerequisites = {'rocket-silo'} data.raw.technology['space-science-pack'].effects = {{type = 'unlock-recipe', recipe = 'satellite'}}