From af49d834f63482e8e60cce127e6a46b2eac30f6a Mon Sep 17 00:00:00 2001 From: Lerking Date: Tue, 15 Apr 2025 21:33:12 +0200 Subject: [PATCH] Update actors/ghost.py --- actors/ghost.py | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/actors/ghost.py b/actors/ghost.py index 0bda1bc..bfe9ae5 100644 --- a/actors/ghost.py +++ b/actors/ghost.py @@ -33,4 +33,20 @@ class ActorGhost(pygame.sprite.Sprite): break def set_mode(self, mode: GhostMode): - self.mode = mode \ No newline at end of file + self.mode = mode + +class Blinky(Ghost): + def __init__(self, position): + super().__init__("Blinky", GhostColor.BLINKY, position, speed=2) + +class Pinky(Ghost): + def __init__(self, position): + super().__init__("Pinky", GhostColor.PINKY, position, speed=2) + +class Inky(Ghost): + def __init__(self, position): + super().__init__("Inky", GhostColor.INKY, position, speed=2) + +class Clyde(Ghost): + def __init__(self, position): + super().__init__("Clyde", GhostColor.CLYDE, position, speed=2) \ No newline at end of file