From: adrianna Date: Sat, 17 May 2014 11:46:35 +0000 (+0200) Subject: tweaked lose screen X-Git-Tag: 0.1~117 X-Git-Url: https://git.ctpug.org.za/?p=naja.git;a=commitdiff_plain;h=5c5fab67d38568608d39d21f48268f35e7d8b81e tweaked lose screen --- diff --git a/data/images/screens/you_lost.png b/data/images/screens/you_lost.png index 5dd0a38..c2059f6 100644 Binary files a/data/images/screens/you_lost.png and b/data/images/screens/you_lost.png differ diff --git a/naja/scenes/lose.py b/naja/scenes/lose.py index 40600a7..6fe9b4f 100644 --- a/naja/scenes/lose.py +++ b/naja/scenes/lose.py @@ -24,10 +24,15 @@ class LoseScene(Scene): self.add(background) - self.add(TextWidget( - (50, 50), 'You lost!', colour=PALETTE.WHITE)) + #self.add(TextWidget( + # (50, 50), 'You lost!', colour=PALETTE.WHITE)) + + if self.state.gameboard.has_cheated: + self.add(TextWidget( + (50, 250), 'Even with cheats on.', colour=PALETTE.ORANGE)) + self.add(TextBoxWidget( - (50, 100), '\n\n'.join([ + (50, 300), '\n\n'.join([ "Something went terribly wrong.", "You should re-evaluate your life choices.", ]), fontsize=32, diff --git a/sources/images/you_lost.xcf b/sources/images/you_lost.xcf index 161a356..70f1431 100644 Binary files a/sources/images/you_lost.xcf and b/sources/images/you_lost.xcf differ