Add: Tunnel Scores

This commit is contained in:
Jonas Zeunert
2022-02-22 00:05:37 +01:00
parent 05c26080ab
commit 5b42a2ba63
2 changed files with 44 additions and 22 deletions

View File

@@ -12,6 +12,8 @@ class LampGroup:
lamp.activate()
def deactivate(self):
self.currentLamp = 0
for lamp in self.lamps:
lamp.deactivate()
@@ -54,6 +56,12 @@ TUNNEL_LAMPS = LampGroup([
Lamp("5th Button")
])
TUNNEL_SCORE_LAMPS = LampGroup([
Lamp("Tunnel Lamp 20000 Points"),
Lamp("Tunnel Lamp 30000 Points"),
Lamp("Tunnel Lamp 50000 Points")
])
BONUS_MULTIPLIER_LAMPS = LampGroup([
Lamp("Bonus Multiplier x10"),
Lamp("Bonus Multiplier x20"),