mirror of
https://github.com/MarioSpore/Grinch-AP.git
synced 2025-10-21 20:21:32 -06:00
Factorio: option to randomize silo recipe
This commit is contained in:

committed by
Fabian Dill

parent
7df06b87a5
commit
08beb5fbe6
@@ -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,
|
||||
|
Reference in New Issue
Block a user