Latest update for 1.1

This commit is contained in:
Jarno Westhof
2025-04-21 21:13:45 +02:00
parent eda3d60e0a
commit 51dc518521
4 changed files with 4 additions and 3 deletions

View File

@@ -623,7 +623,7 @@ class GameLogic:
"Power Storage": Building("Power Storage", ("Wire", "Modular Frame", "Stator"), can_produce=False),
"Foundation": Building("Foundation", ("Iron Plate", "Concrete"), can_produce=False),
"Walls Orange": Building("Walls Orange", ("Iron Plate", "Concrete"), can_produce=False),
"Space Elevator": Building("Space Elevator", ("Concrete", "Iron Plate", "Iron Rod", "Wire"), can_produce=False, implicitly_unlocked=True),
"Space Elevator": Building("Space Elevator", ("Concrete", "Iron Plate", "Iron Rod", "Wire"), can_produce=False),
#1.0
"Converter": Building("Converter", ("Fused Modular Frame", "Cooling System", "Radio Control Unit", "SAM Fluctuator"), PowerInfrastructureLevel.Complex),

View File

@@ -630,7 +630,7 @@ class Items:
"Customizer: Carbon Steel Finish": ItemData(G.Customizer, 1338772, C.filler, 0),
"Customizer: Caterium Paint Finish": ItemData(G.Customizer, 1338773, C.filler, 0),
#1338774 - 1338799 Reserved for Cosmetics
#1338776 - 1338799 Reserved for Cosmetics
# Transports 1338800 - 1338899
# Drones (including Drone)

View File

@@ -270,7 +270,7 @@ class Locations():
MamSlot("Alien Technology", "Production Amplifier", 1338591),
MamSlot("Alien Technology", "Power Augmenter", 1338592),
# 1338593 Alien Power Matrix
MamSlot("Quartz", "Material Resonance Screening", 1338594),
MamSlot("Quartz", "Material Resonance Screening", 1338594), # 1.1
# 1338600 - 1338699 - Harddrives - Harddrives
ShopSlot(self.state_logic, 1, 3, 1338700),
ShopSlot(self.state_logic, 2, 3, 1338701),

View File

@@ -23,6 +23,7 @@ class SatisfactoryWorld(World):
topology_present = False
web = SatisfactoryWebWorld()
origin_region_name = "Overworld"
required_client_version = (0, 6, 0)
game_logic: ClassVar[GameLogic] = GameLogic()
state_logic: StateLogic