Factorio: Show item source and enable research queue

This commit is contained in:
Fabian Dill
2021-04-13 11:14:05 +02:00
parent 433981fd3d
commit b7327138f3
3 changed files with 20 additions and 5 deletions

View File

@@ -236,7 +236,8 @@ hollow_knight_skip_options: typing.Dict[str, type(Option)] = {
"SHADESKIPS": Toggle,
}
hollow_knight_options: typing.Dict[str, type(Option)] = {**hollow_knight_randomize_options, **hollow_knight_skip_options}
hollow_knight_options: typing.Dict[str, type(Option)] = {**hollow_knight_randomize_options,
**hollow_knight_skip_options}
class MaxSciencePack(Choice):
@@ -264,6 +265,7 @@ class TechCost(Choice):
option_insane = 6
default = 3
class FreeSamples(Choice):
option_none = 0
option_single_craft = 1
@@ -271,6 +273,7 @@ class FreeSamples(Choice):
option_stack = 3
default = 3
class TechTreeLayout(Choice):
option_single = 0
option_small_diamonds = 1
@@ -279,11 +282,13 @@ class TechTreeLayout(Choice):
option_funnel = 4
default = 0
class Visibility(Choice):
option_none = 0
option_sending = 1
default = 0
factorio_options: typing.Dict[str, type(Option)] = {"max_science_pack": MaxSciencePack,
"tech_tree_layout": TechTreeLayout,
"tech_cost": TechCost,