changeset 295:d037e37c5240

Some endgame message changes.
author Jeremy Thurgood <firxen@gmail.com>
date Sat, 05 Sep 2009 16:19:38 +0000
parents 29e9683055dc
children 010ab166c582
files gamelib/gameover.py
diffstat 1 files changed, 19 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/gamelib/gameover.py	Sat Sep 05 16:19:16 2009 +0000
+++ b/gamelib/gameover.py	Sat Sep 05 16:19:38 2009 +0000
@@ -12,10 +12,25 @@
 
 WON, LOST, LEFT = range(3)
 
-LOST_MESSAGES = ["You lost", 'You failed to protect yur chickens']
-WON_MESSAGES = ["You survived"]
-LEFT_MESSAGES = ["You sold your farm", "You gave up",
-        "Real life got in the way"]
+WON_MESSAGES = [
+    "You won.",
+    "You survived!",
+    "Your chickens will one day rule the world.",
+    ]
+
+LOST_MESSAGES = [
+    "You lost.",
+    "You failed to protect your chickens.",
+    "Unopposed, the foxes overrun the farm.",
+    ]
+
+LEFT_MESSAGES = [
+    "You gave up.",
+    "You sold your farm.",
+    "Real life got in the way.",
+    "Are you siding with the foxes?",
+    "What will your chickens do now?",
+    ]
 
 def ScoreTable():
     """Create and initialise a score table"""