Factorio: add small_diamonds tech tree layout

This commit is contained in:
Fabian Dill
2021-04-10 03:03:46 +02:00
parent e11016b0a2
commit 0586b24579
8 changed files with 53 additions and 15 deletions

View File

@@ -51,7 +51,8 @@ def generate_mod(world: MultiWorld, player: int):
6: 10}[world.tech_cost[player].value]
template_data = {"locations": locations, "player_names" : player_names, "tech_table": tech_table,
"mod_name": mod_name, "allowed_science_packs": world.max_science_pack[player].get_allowed_packs(),
"tech_cost_scale": tech_cost}
"tech_cost_scale": tech_cost,
"tech_tree_layout_prerequisites": world.tech_tree_layout_prerequisites[player]}
for factorio_option in Options.factorio_options:
template_data[factorio_option] = getattr(world, factorio_option)[player].value
control_code = control_template.render(**template_data)