Update to 2.0

This commit is contained in:
Simon Brodtmann 2025-10-05 10:19:11 +02:00
parent bed4d01744
commit ff675ca8d2
49 changed files with 1522 additions and 0 deletions

35
prototypes/technology.lua Normal file
View file

@ -0,0 +1,35 @@
data:extend(
{
{
type = "technology",
name = "advanced-electronics-3",
icon = "__MDbobelectronics__/graphics/icons/technology/advanced-electronics-3.png",
icon_size = 128,
prerequisites =
{
--"processing-unit"
},
effects =
{
{
type = "unlock-recipe",
recipe = "advanced-processing-unit"
},
},
unit =
{
count = 250,
ingredients =
{
{"automation-science-pack", 1},
{"logistic-science-pack", 1},
{"chemical-science-pack", 1}
},
time = 30
},
order = "a-d-d",
},
}
)