Factorio: option to randomize silo recipe

This commit is contained in:
black-sliver
2021-07-24 01:41:41 +02:00
committed by Fabian Dill
parent 7df06b87a5
commit 08beb5fbe6
5 changed files with 130 additions and 14 deletions

View File

@@ -44,6 +44,13 @@ class TechCost(Choice):
default = 3
class Silo(Choice):
"""Ingredients to craft rocket silo."""
option_vanilla = 0
option_randomize_recipe = 1
default = 0
class FreeSamples(Choice):
"""Get free items with your technologies."""
option_none = 0
@@ -242,6 +249,7 @@ factorio_options: typing.Dict[str, type(Option)] = {
"max_science_pack": MaxSciencePack,
"tech_tree_layout": TechTreeLayout,
"tech_cost": TechCost,
"silo": Silo,
"free_samples": FreeSamples,
"tech_tree_information": TechTreeInformation,
"starting_items": FactorioStartItems,