Refine start menu difficulty and preview workflow

This commit is contained in:
2026-05-08 18:26:55 +02:00
parent f1770b218c
commit d32d2cd79c
12 changed files with 401 additions and 14 deletions
+1 -1
View File
@@ -16,7 +16,7 @@ class Rat(Unit):
def __init__(self, game, position=(0,0), id=None):
super().__init__(game, position, id, collision_layer=CollisionLayer.RAT)
# Specific attributes for rats
self.speed = 0.10 # Rats are slower
self.speed = 0.10 * getattr(self.game, "rat_speed_multiplier", 1.0)
self.fight = False
self.gassed = 0
self.direction = "DOWN" # Default direction