The issue is when you have let's say a series of tech1 to tech3 and you add each with the previous as prerequisite. Shouldn't this hide the tech2 and tech3 from the research list until tech1 is researched and then shows tech2 and after that is researched it shows tech3?
code example:
Code: Select all
data:extend({
{
type = "technology",
name = "tech1",
icon = "__MOD__/graphics/research1.png",
effects =
{
{
type = "unlock-recipe",
recipe = "item1"
}
},
prerequisites = {},
unit =
{
count = 75,
ingredients =
{
{"science-pack-1", 2},
{"science-pack-2", 1},
{"science-pack-3", 1}
},
time = 30
}
},
{
type = "technology",
name = "tech2",
icon = "__MOD__/graphics/research2.png",
effects =
{
{
type = "unlock-recipe",
recipe = "item2"
}
},
prerequisites = {"tech1"},
unit =
{
count = 75,
ingredients =
{
{"science-pack-1", 2},
{"science-pack-2", 1},
{"science-pack-3", 1}
},
time = 30
}
},{
type = "technology",
name = "tech3",
icon = "__MOD__/graphics/research3.png",
effects =
{
{
type = "unlock-recipe",
recipe = "item3"
}
},
prerequisites = {"tech3"},
unit =
{
count = 75,
ingredients =
{
{"science-pack-1", 2},
{"science-pack-2", 1},
{"science-pack-3", 1}
},
time = 30
}
}
})