This commit is contained in:
Jonas Zeunert
2022-09-03 15:02:14 +02:00
parent 1653a911bf
commit b338964e06
2 changed files with 3 additions and 2 deletions

View File

@@ -237,6 +237,7 @@ class PlayerState:
if self.orangeSpecial > 2:
self.orangeSpecial = 0
ORANGE_SPECIAL_LAMPS.deactivate()
ORANGE_SPECIAL_LAMPS.activateNext()
Sound(21).play()
time.sleep(0.9)

View File

@@ -1,12 +1,12 @@
from events.SpecialEvent import SpecialEvent
from lamps.Lamp import Lamp
from lamps.LampGroup import ORANGE_SPECIAL_LAMPS
class OrangeSpecialEvent(SpecialEvent):
def __init__(self, gameState):
super().__init__("Orange Special Event", gameState)
Lamp("Special Orange").activate()
ORANGE_SPECIAL_LAMPS.activateNext()
self.points = 100000
def trigger(self, target):