a REAL em dash
[naja.git] / naja / scenes / win.py
index 59efdb917c37b63a19db3f205279e274c52eac0f..5acff6e5f8abde20029a5ffe21018e038c0d4f0d 100644 (file)
@@ -24,21 +24,24 @@ class WinScene(Scene):
             (0, 0), "screens/you_won.png")
         self.add(background)
 
+        y_offset = 250
+
         if self.state.gameboard.has_cheated:
             self.add(TextWidget(
-                (50, 250), 'But you\'re a CHEATER!', colour=PALETTE.ORANGE))
+                (50, y_offset), 'But you\'re a CHEATER!', colour=PALETTE.ORANGE))
+            y_offset += 50
+
         self.add(TextBoxWidget(
-            (50, 300), '\n\n'.join([
+            (50, y_offset), '\n\n'.join([
                 "You're great.",
                 "You did well.",
                 "You should be proud of yourself.",
-                "",
                 "Press ESC to return to the menu",
             ]),
             colour=PALETTE.WHITE, padding=1, border=1,
             bg_colour=PALETTE.BLACK, border_colour=PALETTE.BLACK,
             box_width=300))
-        sound.play_music('A_ninja.ogg')
+        sound.play_music('A_ninja.ogg', 0.25)
 
     def handle_scene_event(self, ev):
         from naja.scenes.menu import MenuScene