From 87add884367462c6c3b6b54f5edb112047462e06 Mon Sep 17 00:00:00 2001 From: Fabian Dill Date: Mon, 13 Sep 2021 23:50:43 +0200 Subject: [PATCH] Factorio: add stone as red science option --- worlds/factorio/Technologies.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/worlds/factorio/Technologies.py b/worlds/factorio/Technologies.py index f6c69a4e..ac3dcad9 100644 --- a/worlds/factorio/Technologies.py +++ b/worlds/factorio/Technologies.py @@ -188,6 +188,7 @@ raw_recipes["uranium-ore"] = {"ingredients": {"sulfuric-acid": 1}, "products": { # raw_recipes["iron-ore"] = {"ingredients": {}, "products": {"iron-ore": 1}, "category": "mining", "energy": 2} # raw_recipes["copper-ore"] = {"ingredients": {}, "products": {"copper-ore": 1}, "category": "mining", "energy": 2} # raw_recipes["coal-ore"] = {"ingredients": {}, "products": {"coal": 1}, "category": "mining", "energy": 2} +# raw_recipes["stone"] = {"ingredients": {}, "products": {"coal": 1}, "category": "mining", "energy": 2} for recipe_name, recipe_data in raw_recipes.items(): # example: @@ -478,7 +479,7 @@ def get_science_pack_pools() -> Dict[str, Set[str]]: and get_estimated_difficulty(recipe) < current_difficulty: current |= set(recipe.products) if science_pack == "automation-science-pack": - current |= {"iron-ore", "copper-ore", "coal"} + current |= {"iron-ore", "copper-ore", "coal", "stone"} current -= already_taken already_taken |= current current_difficulty *= 2